
    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_0e44084b425ec34784d5c15f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_87e271206c61fe61d3cd78d3.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_e1f88364c8b885790105ca1e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_81b3ae2379a35143f1554e08.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_215f6b14ac8982d99a8bae2d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_83124676b40d324af20147df.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cc0c70ad03b49b03539bc1dc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3ee8760d04ac233fb6d530a6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.678223;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_d1f875e321360b13ce1f997c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c5f2034febb7cef578860156.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_20c6102b9536798472b55398.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e215a7f939f38e426bfda1d2.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1a8f2ff6115ef7aa98d12937.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4559650c2204b0bd741832b5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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:fff;src:url('chunks/assets/font_65644fa9422fd4024f853b1b.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_bbf42d498ed4e23c2251f05b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.675781;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:ff11;src:url('chunks/assets/font_8f12436248bbbc3ffb118f80.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.675781;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:ff12;src:url('chunks/assets/font_b6b7018e39244b1a8d0a7247.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.874023;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:ff13;src:url('chunks/assets/font_74f886e5c703256cd7cc3523.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.857910;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:ff14;src:url('chunks/assets/font_d6560f7cd99438049e59006f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.676270;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.697000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.056000px;}
.v4{vertical-align:2.160000px;}
.v6{vertical-align:8.479728px;}
.v1{vertical-align:30.381600px;}
.ls19{letter-spacing:-6.648000px;}
.ls9d{letter-spacing:-2.640000px;}
.lsa0{letter-spacing:-1.920000px;}
.ls70{letter-spacing:-1.416240px;}
.ls73{letter-spacing:-1.377956px;}
.ls71{letter-spacing:-1.345428px;}
.ls72{letter-spacing:-1.307291px;}
.ls17{letter-spacing:-0.780000px;}
.ls9f{letter-spacing:-0.480000px;}
.ls18{letter-spacing:-0.379800px;}
.ls4c{letter-spacing:-0.336000px;}
.ls76{letter-spacing:-0.325498px;}
.ls56{letter-spacing:-0.300000px;}
.lsa6{letter-spacing:-0.288000px;}
.ls74{letter-spacing:-0.271248px;}
.ls57{letter-spacing:-0.240000px;}
.ls55{letter-spacing:-0.180000px;}
.ls47{letter-spacing:-0.120000px;}
.ls3d{letter-spacing:-0.060000px;}
.ls9c{letter-spacing:-0.048000px;}
.ls16{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.004140px;}
.ls4a{letter-spacing:0.048000px;}
.ls51{letter-spacing:0.060000px;}
.ls9e{letter-spacing:0.096000px;}
.ls1a{letter-spacing:0.120000px;}
.ls63{letter-spacing:0.144000px;}
.ls27{letter-spacing:0.180000px;}
.ls87{letter-spacing:0.192000px;}
.lsd{letter-spacing:0.240000px;}
.ls30{letter-spacing:0.300000px;}
.ls81{letter-spacing:0.336000px;}
.ls4d{letter-spacing:0.360000px;}
.ls6f{letter-spacing:0.389466px;}
.ls32{letter-spacing:0.420000px;}
.ls77{letter-spacing:0.423986px;}
.ls98{letter-spacing:0.432000px;}
.ls75{letter-spacing:0.460278px;}
.ls3e{letter-spacing:0.480000px;}
.lsa2{letter-spacing:0.528000px;}
.ls15{letter-spacing:0.540000px;}
.ls86{letter-spacing:0.576000px;}
.ls28{letter-spacing:0.600000px;}
.ls8c{letter-spacing:0.624000px;}
.ls13{letter-spacing:0.660000px;}
.ls3{letter-spacing:0.720000px;}
.lsa3{letter-spacing:0.768000px;}
.ls3a{letter-spacing:0.780000px;}
.ls2e{letter-spacing:0.840000px;}
.ls83{letter-spacing:0.864000px;}
.ls1c{letter-spacing:0.900000px;}
.ls84{letter-spacing:0.912000px;}
.ls9{letter-spacing:0.960000px;}
.ls48{letter-spacing:1.008000px;}
.ls1e{letter-spacing:1.020000px;}
.ls49{letter-spacing:1.056000px;}
.ls26{letter-spacing:1.080000px;}
.ls8d{letter-spacing:1.104000px;}
.ls7{letter-spacing:1.140000px;}
.ls2c{letter-spacing:1.200000px;}
.ls7c{letter-spacing:1.248000px;}
.ls36{letter-spacing:1.260000px;}
.ls82{letter-spacing:1.296000px;}
.ls1b{letter-spacing:1.320000px;}
.ls99{letter-spacing:1.344000px;}
.ls2d{letter-spacing:1.380000px;}
.ls8b{letter-spacing:1.392000px;}
.ls8{letter-spacing:1.440000px;}
.ls7d{letter-spacing:1.488000px;}
.lsc{letter-spacing:1.500000px;}
.ls85{letter-spacing:1.536000px;}
.lsb{letter-spacing:1.560000px;}
.ls8f{letter-spacing:1.584000px;}
.ls24{letter-spacing:1.620000px;}
.ls25{letter-spacing:1.680000px;}
.ls97{letter-spacing:1.728000px;}
.lse{letter-spacing:1.740000px;}
.ls90{letter-spacing:1.776000px;}
.ls1d{letter-spacing:1.800000px;}
.ls7f{letter-spacing:1.824000px;}
.ls4{letter-spacing:1.860000px;}
.lsf{letter-spacing:1.920000px;}
.ls9b{letter-spacing:1.968000px;}
.ls5{letter-spacing:1.980000px;}
.ls10{letter-spacing:2.040000px;}
.ls29{letter-spacing:2.100000px;}
.ls96{letter-spacing:2.112000px;}
.ls14{letter-spacing:2.160000px;}
.ls9a{letter-spacing:2.208000px;}
.ls12{letter-spacing:2.220000px;}
.ls7b{letter-spacing:2.256000px;}
.ls45{letter-spacing:2.280000px;}
.ls79{letter-spacing:2.304000px;}
.ls2b{letter-spacing:2.340000px;}
.ls88{letter-spacing:2.352000px;}
.ls2f{letter-spacing:2.400000px;}
.ls61{letter-spacing:2.460000px;}
.ls7e{letter-spacing:2.496000px;}
.ls44{letter-spacing:2.520000px;}
.ls80{letter-spacing:2.544000px;}
.ls35{letter-spacing:2.580000px;}
.ls2{letter-spacing:2.640000px;}
.ls43{letter-spacing:2.700000px;}
.ls7a{letter-spacing:2.736000px;}
.ls37{letter-spacing:2.760000px;}
.ls21{letter-spacing:2.820000px;}
.ls95{letter-spacing:2.832000px;}
.ls39{letter-spacing:2.880000px;}
.lsa5{letter-spacing:2.928000px;}
.ls33{letter-spacing:2.940000px;}
.ls91{letter-spacing:2.976000px;}
.ls1f{letter-spacing:3.000000px;}
.lsa1{letter-spacing:3.024000px;}
.ls54{letter-spacing:3.060000px;}
.ls8a{letter-spacing:3.072000px;}
.lsa{letter-spacing:3.120000px;}
.ls53{letter-spacing:3.180000px;}
.lsa4{letter-spacing:3.216000px;}
.ls52{letter-spacing:3.240000px;}
.ls3c{letter-spacing:3.300000px;}
.ls93{letter-spacing:3.312000px;}
.ls40{letter-spacing:3.360000px;}
.ls62{letter-spacing:3.420000px;}
.ls41{letter-spacing:3.480000px;}
.ls66{letter-spacing:3.540000px;}
.ls8e{letter-spacing:3.648000px;}
.ls50{letter-spacing:3.660000px;}
.ls11{letter-spacing:3.780000px;}
.ls4e{letter-spacing:3.840000px;}
.ls67{letter-spacing:3.900000px;}
.ls42{letter-spacing:4.020000px;}
.ls5b{letter-spacing:4.200000px;}
.ls89{letter-spacing:4.368000px;}
.ls78{letter-spacing:4.464000px;}
.ls6{letter-spacing:4.500000px;}
.ls92{letter-spacing:4.512000px;}
.ls65{letter-spacing:4.860000px;}
.ls94{letter-spacing:4.896000px;}
.ls3f{letter-spacing:5.160000px;}
.ls4f{letter-spacing:5.280000px;}
.ls58{letter-spacing:5.580000px;}
.ls4b{letter-spacing:6.000000px;}
.ls3b{letter-spacing:6.540000px;}
.ls31{letter-spacing:6.720000px;}
.ls20{letter-spacing:6.780000px;}
.ls23{letter-spacing:6.840000px;}
.ls34{letter-spacing:6.900000px;}
.ls5a{letter-spacing:6.960000px;}
.ls2a{letter-spacing:7.080000px;}
.ls38{letter-spacing:7.680000px;}
.ls22{letter-spacing:7.800000px;}
.ls59{letter-spacing:7.920000px;}
.ls6d{letter-spacing:14.950974px;}
.ls6b{letter-spacing:14.980374px;}
.ls69{letter-spacing:14.987964px;}
.ls6a{letter-spacing:17.223762px;}
.ls6e{letter-spacing:17.281472px;}
.ls6c{letter-spacing:17.304872px;}
.ls68{letter-spacing:22.026168px;}
.ls46{letter-spacing:56.016000px;}
.ls5d{letter-spacing:112.080000px;}
.ls60{letter-spacing:231.120000px;}
.ls5f{letter-spacing:247.680000px;}
.ls5c{letter-spacing:282.144000px;}
.ls5e{letter-spacing:486.240000px;}
.ls64{letter-spacing:1014.192000px;}
.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;}
}
.ws98{word-spacing:-498.240000px;}
.ws94{word-spacing:-294.144000px;}
.ws4d{word-spacing:-60.300000px;}
.wsa8{word-spacing:-45.000000px;}
.ws3{word-spacing:-35.040000px;}
.ws92{word-spacing:-20.580000px;}
.ws70{word-spacing:-20.280000px;}
.wsa9{word-spacing:-19.200000px;}
.wsaa{word-spacing:-18.120000px;}
.ws23{word-spacing:-18.000000px;}
.ws93{word-spacing:-17.940000px;}
.ws46{word-spacing:-17.880000px;}
.ws15{word-spacing:-17.820000px;}
.ws20{word-spacing:-17.760000px;}
.ws49{word-spacing:-17.700000px;}
.wsad{word-spacing:-17.400000px;}
.wsd4{word-spacing:-17.340000px;}
.ws4b{word-spacing:-17.280000px;}
.ws5{word-spacing:-17.220000px;}
.ws16{word-spacing:-17.160000px;}
.ws1a{word-spacing:-17.100000px;}
.ws6e{word-spacing:-17.040000px;}
.ws74{word-spacing:-16.980000px;}
.ws1d{word-spacing:-16.920000px;}
.ws17{word-spacing:-16.860000px;}
.ws14{word-spacing:-16.800000px;}
.ws1c{word-spacing:-16.740000px;}
.ws2{word-spacing:-16.680000px;}
.ws22{word-spacing:-16.620000px;}
.wsaf{word-spacing:-16.560000px;}
.ws75{word-spacing:-16.440000px;}
.ws24{word-spacing:-16.380000px;}
.wse6{word-spacing:-16.368000px;}
.wsab{word-spacing:-16.320000px;}
.ws73{word-spacing:-16.260000px;}
.ws1e{word-spacing:-16.200000px;}
.ws1b{word-spacing:-16.140000px;}
.ws1f{word-spacing:-16.080000px;}
.ws18{word-spacing:-16.020000px;}
.wsae{word-spacing:-15.960000px;}
.ws19{word-spacing:-15.900000px;}
.ws72{word-spacing:-15.840000px;}
.ws21{word-spacing:-15.780000px;}
.ws4a{word-spacing:-15.720000px;}
.wse9{word-spacing:-15.648000px;}
.ws6{word-spacing:-15.540000px;}
.ws6f{word-spacing:-15.480000px;}
.wsac{word-spacing:-15.360000px;}
.wseb{word-spacing:-15.312000px;}
.ws4c{word-spacing:-15.300000px;}
.ws48{word-spacing:-15.240000px;}
.ws47{word-spacing:-15.180000px;}
.ws13{word-spacing:-15.120000px;}
.wse7{word-spacing:-15.072000px;}
.ws71{word-spacing:-15.060000px;}
.ws4{word-spacing:-15.000000px;}
.ws76{word-spacing:-14.760000px;}
.wsdc{word-spacing:-14.736000px;}
.wsdf{word-spacing:-13.824000px;}
.wse8{word-spacing:-13.776000px;}
.wsea{word-spacing:-13.536000px;}
.wsde{word-spacing:-13.488000px;}
.wse5{word-spacing:-13.440000px;}
.ws25{word-spacing:-13.344000px;}
.wse1{word-spacing:-13.296000px;}
.wsdd{word-spacing:-13.248000px;}
.ws67{word-spacing:-13.008000px;}
.wse3{word-spacing:-12.912000px;}
.wse2{word-spacing:-12.864000px;}
.ws7{word-spacing:-12.510000px;}
.wsc5{word-spacing:-12.260410px;}
.wsb0{word-spacing:-12.144000px;}
.ws55{word-spacing:-12.000000px;}
.wse0{word-spacing:-11.952000px;}
.ws1{word-spacing:-10.210662px;}
.wsec{word-spacing:-10.080000px;}
.wse4{word-spacing:-9.360000px;}
.ws6d{word-spacing:-8.745000px;}
.wsc7{word-spacing:-8.462034px;}
.wsc8{word-spacing:-8.409064px;}
.wsc3{word-spacing:-8.001756px;}
.wsc6{word-spacing:-7.985077px;}
.ws87{word-spacing:-5.280000px;}
.wsc9{word-spacing:-4.860000px;}
.wsa{word-spacing:-4.684200px;}
.wsf6{word-spacing:-4.368000px;}
.wsb4{word-spacing:-4.200000px;}
.ws86{word-spacing:-3.840000px;}
.ws109{word-spacing:-3.216000px;}
.wsb7{word-spacing:-3.120000px;}
.wsb8{word-spacing:-3.000000px;}
.ws84{word-spacing:-2.940000px;}
.ws104{word-spacing:-2.928000px;}
.ws9{word-spacing:-2.886000px;}
.ws2a{word-spacing:-2.820000px;}
.ws3f{word-spacing:-2.760000px;}
.ws65{word-spacing:-2.640000px;}
.ws5d{word-spacing:-2.400000px;}
.wsfa{word-spacing:-2.352000px;}
.wsd9{word-spacing:-2.340000px;}
.wsee{word-spacing:-2.304000px;}
.ws2f{word-spacing:-2.220000px;}
.ws2c{word-spacing:-2.160000px;}
.wsbf{word-spacing:-2.040000px;}
.ws10{word-spacing:-1.980000px;}
.ws100{word-spacing:-1.968000px;}
.ws2e{word-spacing:-1.860000px;}
.wsf0{word-spacing:-1.824000px;}
.ws29{word-spacing:-1.800000px;}
.ws45{word-spacing:-1.740000px;}
.ws57{word-spacing:-1.680000px;}
.ws2b{word-spacing:-1.620000px;}
.ws5e{word-spacing:-1.560000px;}
.ws5f{word-spacing:-1.500000px;}
.ws8f{word-spacing:-1.440000px;}
.ws10a{word-spacing:-1.392000px;}
.wsb6{word-spacing:-1.380000px;}
.wsba{word-spacing:-1.320000px;}
.ws8b{word-spacing:-1.260000px;}
.wsef{word-spacing:-1.248000px;}
.ws36{word-spacing:-1.200000px;}
.ws3e{word-spacing:-1.080000px;}
.ws6b{word-spacing:-1.056000px;}
.ws30{word-spacing:-1.020000px;}
.wsc0{word-spacing:-0.960000px;}
.ws28{word-spacing:-0.900000px;}
.ws66{word-spacing:-0.864000px;}
.wsbc{word-spacing:-0.840000px;}
.ws40{word-spacing:-0.780000px;}
.ws8d{word-spacing:-0.660000px;}
.ws108{word-spacing:-0.624000px;}
.ws31{word-spacing:-0.600000px;}
.ws5b{word-spacing:-0.480000px;}
.wsff{word-spacing:-0.432000px;}
.wsd3{word-spacing:-0.424872px;}
.wsbe{word-spacing:-0.360000px;}
.ws58{word-spacing:-0.300000px;}
.ws5c{word-spacing:-0.240000px;}
.ws3a{word-spacing:-0.180000px;}
.wsc2{word-spacing:-0.144000px;}
.ws0{word-spacing:-0.126600px;}
.ws26{word-spacing:-0.120000px;}
.wsf7{word-spacing:-0.096000px;}
.ws88{word-spacing:-0.060000px;}
.wsb2{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.wsd{word-spacing:0.012000px;}
.wsf2{word-spacing:0.048000px;}
.wsb{word-spacing:0.060000px;}
.wsc{word-spacing:0.072000px;}
.wscb{word-spacing:0.096000px;}
.ws83{word-spacing:0.120000px;}
.wsfd{word-spacing:0.144000px;}
.wsd1{word-spacing:0.271248px;}
.ws106{word-spacing:0.288000px;}
.ws10b{word-spacing:0.300000px;}
.wsd2{word-spacing:0.325498px;}
.ws34{word-spacing:0.360000px;}
.ws64{word-spacing:0.420000px;}
.wscc{word-spacing:0.432000px;}
.wsbd{word-spacing:0.480000px;}
.wsa6{word-spacing:0.600000px;}
.ws9d{word-spacing:0.660000px;}
.ws11{word-spacing:0.780000px;}
.ws105{word-spacing:0.816000px;}
.ws85{word-spacing:0.840000px;}
.ws42{word-spacing:0.960000px;}
.ws9f{word-spacing:1.080000px;}
.ws91{word-spacing:1.140000px;}
.ws35{word-spacing:1.260000px;}
.wscf{word-spacing:1.307291px;}
.wsca{word-spacing:1.320000px;}
.wsce{word-spacing:1.345428px;}
.wsd0{word-spacing:1.377956px;}
.ws37{word-spacing:1.380000px;}
.wscd{word-spacing:1.416240px;}
.wsf8{word-spacing:1.488000px;}
.ws5a{word-spacing:1.560000px;}
.ws89{word-spacing:1.620000px;}
.ws59{word-spacing:1.680000px;}
.ws8c{word-spacing:1.740000px;}
.ws27{word-spacing:1.800000px;}
.wsfe{word-spacing:1.824000px;}
.ws103{word-spacing:1.872000px;}
.wsf9{word-spacing:2.016000px;}
.wsf5{word-spacing:2.064000px;}
.wsa5{word-spacing:2.100000px;}
.wsfc{word-spacing:2.208000px;}
.wsbb{word-spacing:2.220000px;}
.ws8e{word-spacing:2.280000px;}
.wsa1{word-spacing:2.460000px;}
.ws9e{word-spacing:2.520000px;}
.wsdb{word-spacing:2.640000px;}
.ws82{word-spacing:2.700000px;}
.ws33{word-spacing:2.760000px;}
.ws3d{word-spacing:2.880000px;}
.ws8a{word-spacing:2.940000px;}
.wsf4{word-spacing:2.976000px;}
.ws60{word-spacing:3.000000px;}
.ws107{word-spacing:3.072000px;}
.wsf1{word-spacing:3.120000px;}
.wsfb{word-spacing:3.168000px;}
.ws39{word-spacing:3.180000px;}
.ws101{word-spacing:3.216000px;}
.ws2d{word-spacing:3.240000px;}
.ws61{word-spacing:3.300000px;}
.ws12{word-spacing:3.360000px;}
.wsd6{word-spacing:3.420000px;}
.wsf3{word-spacing:3.456000px;}
.wsa3{word-spacing:3.480000px;}
.ws3b{word-spacing:3.660000px;}
.ws102{word-spacing:3.696000px;}
.wsd7{word-spacing:3.720000px;}
.wsd5{word-spacing:3.780000px;}
.ws6a{word-spacing:3.936000px;}
.ws6c{word-spacing:3.984000px;}
.wsa4{word-spacing:4.020000px;}
.wsc1{word-spacing:4.080000px;}
.wsa2{word-spacing:4.200000px;}
.ws32{word-spacing:4.260000px;}
.ws3c{word-spacing:4.320000px;}
.ws38{word-spacing:4.380000px;}
.ws90{word-spacing:4.440000px;}
.wsd8{word-spacing:4.500000px;}
.wsa7{word-spacing:4.560000px;}
.wsb5{word-spacing:4.740000px;}
.ws43{word-spacing:4.800000px;}
.wsb9{word-spacing:4.860000px;}
.wsf{word-spacing:4.920000px;}
.wse{word-spacing:4.980000px;}
.ws63{word-spacing:5.280000px;}
.wsda{word-spacing:5.460000px;}
.wsed{word-spacing:5.520000px;}
.ws62{word-spacing:5.700000px;}
.ws41{word-spacing:5.760000px;}
.wsa0{word-spacing:6.960000px;}
.ws44{word-spacing:7.920000px;}
.wsc4{word-spacing:9.656429px;}
.ws50{word-spacing:21.792000px;}
.ws4f{word-spacing:88.992000px;}
.ws4e{word-spacing:139.152000px;}
.ws54{word-spacing:139.680000px;}
.ws52{word-spacing:145.968000px;}
.ws53{word-spacing:148.176000px;}
.ws56{word-spacing:152.640000px;}
.ws51{word-spacing:169.008000px;}
.ws96{word-spacing:210.144000px;}
.ws9b{word-spacing:219.120000px;}
.ws95{word-spacing:222.144000px;}
.ws69{word-spacing:226.848000px;}
.ws97{word-spacing:234.144000px;}
.ws80{word-spacing:234.288000px;}
.ws7e{word-spacing:239.616000px;}
.ws7a{word-spacing:247.632000px;}
.ws78{word-spacing:252.960000px;}
.ws81{word-spacing:255.600000px;}
.ws7d{word-spacing:378.240000px;}
.ws7b{word-spacing:383.568000px;}
.ws9a{word-spacing:414.240000px;}
.ws77{word-spacing:415.584000px;}
.ws9c{word-spacing:438.240000px;}
.ws99{word-spacing:460.224000px;}
.ws79{word-spacing:537.168000px;}
.ws68{word-spacing:600.192000px;}
.ws7c{word-spacing:681.168000px;}
.ws7f{word-spacing:709.968000px;}
.wsb3{word-spacing:1078.320000px;}
.wsb1{word-spacing:1789.632000px;}
._a{margin-left:-2897.481000px;}
._42{margin-left:-2874.915000px;}
._21{margin-left:-2873.673000px;}
._39{margin-left:-486.240000px;}
._31{margin-left:-282.144000px;}
._c{margin-left:-7.785000px;}
._5{margin-left:-6.396000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-4.215000px;}
._0{margin-left:-2.310000px;}
._6{margin-left:-1.035000px;}
._2{width:1.071600px;}
._9{width:2.835000px;}
._3{width:4.684200px;}
._7{width:5.820000px;}
._8{width:7.080000px;}
._b{width:8.220000px;}
._29{width:10.260000px;}
._1f{width:34.506000px;}
._18{width:36.480000px;}
._14{width:56.550000px;}
._11{width:72.576000px;}
._25{width:74.976000px;}
._20{width:83.745000px;}
._17{width:91.776000px;}
._1a{width:92.928000px;}
._13{width:98.448000px;}
._27{width:101.616000px;}
._10{width:104.832000px;}
._19{width:128.592000px;}
._41{width:134.605204px;}
._15{width:136.614000px;}
._1e{width:140.160000px;}
._23{width:145.488000px;}
._1b{width:154.758000px;}
._16{width:156.624000px;}
._28{width:161.184000px;}
._12{width:165.840000px;}
._1c{width:180.330000px;}
._e{width:225.840000px;}
._d{width:227.232000px;}
._40{width:231.120000px;}
._35{width:234.144000px;}
._f{width:247.392000px;}
._1d{width:255.402000px;}
._2b{width:263.616000px;}
._30{width:272.928000px;}
._2f{width:306.240000px;}
._2a{width:326.256000px;}
._36{width:356.496000px;}
._24{width:362.592000px;}
._2e{width:398.256000px;}
._2d{width:408.864000px;}
._37{width:432.150000px;}
._3d{width:460.224000px;}
._33{width:468.528000px;}
._3f{width:472.224000px;}
._32{width:479.184000px;}
._38{width:482.838000px;}
._3b{width:517.206000px;}
._34{width:537.888000px;}
._3c{width:555.894000px;}
._3e{width:567.894000px;}
._3a{width:619.206000px;}
._22{width:637.329000px;}
._26{width:754.464000px;}
._2c{width:885.120000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fsd{font-size:35.332200px;}
.fsb{font-size:35.406000px;}
.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;}
.fsc{font-size:54.249600px;}
.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;}
.y1a4{bottom:77.121900px;}
.y1e5{bottom:80.263500px;}
.yf9{bottom:83.141400px;}
.y64{bottom:83.770350px;}
.y109{bottom:84.074700px;}
.y2b{bottom:88.026750px;}
.y1a3{bottom:92.121900px;}
.y90{bottom:92.226000px;}
.yd1{bottom:92.236950px;}
.yf4{bottom:92.666700px;}
.y1e4{bottom:95.263500px;}
.yf8{bottom:98.885400px;}
.y108{bottom:99.818700px;}
.y16a{bottom:101.628600px;}
.y63{bottom:101.770350px;}
.y2a{bottom:103.023000px;}
.y1a2{bottom:107.121900px;}
.yd0{bottom:108.484950px;}
.y8f{bottom:108.726000px;}
.yf3{bottom:108.914700px;}
.y1e3{bottom:110.263500px;}
.y107{bottom:115.562700px;}
.y169{bottom:119.223600px;}
.y62{bottom:119.770350px;}
.y1a1{bottom:122.121900px;}
.y102{bottom:123.736950px;}
.ycf{bottom:124.744950px;}
.y8e{bottom:124.974000px;}
.yf2{bottom:125.162700px;}
.y1e2{bottom:125.263500px;}
.y106{bottom:131.306700px;}
.y1a0{bottom:137.121900px;}
.y61{bottom:137.770350px;}
.y1e1{bottom:140.263500px;}
.yce{bottom:140.992950px;}
.y8d{bottom:141.222000px;}
.yf1{bottom:141.410700px;}
.y100{bottom:141.952950px;}
.y19f{bottom:152.121900px;}
.ya2{bottom:153.820200px;}
.y1e0{bottom:155.263500px;}
.y168{bottom:155.628600px;}
.y60{bottom:155.770350px;}
.y103{bottom:156.124950px;}
.ycd{bottom:157.252950px;}
.yf0{bottom:157.658700px;}
.y8c{bottom:157.722000px;}
.y10b{bottom:158.897504px;}
.y101{bottom:163.924950px;}
.y105{bottom:165.700950px;}
.y19e{bottom:167.121900px;}
.y1df{bottom:170.263500px;}
.ya1{bottom:170.320200px;}
.y27{bottom:172.282200px;}
.ycc{bottom:173.500950px;}
.y167{bottom:173.628600px;}
.y5f{bottom:173.770350px;}
.yef{bottom:173.906700px;}
.y8b{bottom:173.970000px;}
.y104{bottom:179.068950px;}
.y19d{bottom:182.121900px;}
.y10a{bottom:184.923750px;}
.y1de{bottom:185.263500px;}
.ya0{bottom:186.568200px;}
.ycb{bottom:189.760950px;}
.yee{bottom:190.154700px;}
.y8a{bottom:190.218000px;}
.y26{bottom:190.282200px;}
.y166{bottom:191.628600px;}
.y5e{bottom:191.770350px;}
.y148{bottom:193.815994px;}
.y19c{bottom:197.121900px;}
.yff{bottom:198.052950px;}
.y1dd{bottom:200.263500px;}
.y9f{bottom:203.068200px;}
.y147{bottom:203.364521px;}
.yca{bottom:206.008950px;}
.yed{bottom:206.402700px;}
.y89{bottom:206.466000px;}
.y25{bottom:208.282200px;}
.y165{bottom:209.223600px;}
.y5d{bottom:209.770350px;}
.y142{bottom:211.219617px;}
.y146{bottom:211.296600px;}
.y19b{bottom:212.121900px;}
.y1dc{bottom:215.263500px;}
.y14d{bottom:215.387876px;}
.y9e{bottom:219.316200px;}
.y145{bottom:221.912100px;}
.yec{bottom:222.650700px;}
.y88{bottom:222.714000px;}
.yfe{bottom:224.788950px;}
.y24{bottom:226.282200px;}
.y19a{bottom:227.121900px;}
.y5c{bottom:227.770350px;}
.y1db{bottom:230.263500px;}
.y144{bottom:232.533900px;}
.y9d{bottom:235.564200px;}
.yc9{bottom:237.520950px;}
.y87{bottom:239.214000px;}
.y143{bottom:240.556800px;}
.y199{bottom:242.121900px;}
.y23{bottom:244.282200px;}
.y1da{bottom:245.263500px;}
.y164{bottom:245.628600px;}
.y5b{bottom:245.770350px;}
.y141{bottom:250.360950px;}
.y9c{bottom:252.064200px;}
.yeb{bottom:254.162700px;}
.y86{bottom:255.714000px;}
.y198{bottom:257.121900px;}
.y14b{bottom:257.716127px;}
.y140{bottom:259.157769px;}
.y1d9{bottom:260.263500px;}
.y22{bottom:262.282200px;}
.y163{bottom:263.628600px;}
.y5a{bottom:263.770350px;}
.y13f{bottom:267.010350px;}
.y9b{bottom:268.312200px;}
.y85{bottom:271.962000px;}
.y197{bottom:272.121900px;}
.yc8{bottom:272.410350px;}
.y1d8{bottom:275.263500px;}
.y13d{bottom:277.588067px;}
.y21{bottom:280.282200px;}
.y162{bottom:281.628600px;}
.y59{bottom:281.770350px;}
.y9a{bottom:284.812200px;}
.y13c{bottom:287.021765px;}
.y196{bottom:287.121900px;}
.y84{bottom:288.462000px;}
.yea{bottom:289.057800px;}
.y1d7{bottom:290.263500px;}
.y13e{bottom:296.219250px;}
.y136{bottom:296.764647px;}
.y20{bottom:298.282200px;}
.y161{bottom:299.628600px;}
.y58{bottom:299.770350px;}
.y99{bottom:301.312200px;}
.y195{bottom:302.121900px;}
.yfd{bottom:304.684950px;}
.y83{bottom:304.962000px;}
.y1d6{bottom:305.263500px;}
.y13a{bottom:305.897992px;}
.ye9{bottom:308.557800px;}
.y139{bottom:316.056000px;}
.y1f{bottom:316.282200px;}
.y194{bottom:317.121900px;}
.y160{bottom:317.628600px;}
.y57{bottom:317.770350px;}
.yb5{bottom:317.920350px;}
.y1d5{bottom:320.263500px;}
.y14c{bottom:324.972068px;}
.y138{bottom:325.602834px;}
.y133{bottom:326.413950px;}
.y193{bottom:332.121900px;}
.y98{bottom:332.824200px;}
.yfb{bottom:332.896950px;}
.yfa{bottom:333.652950px;}
.y82{bottom:333.966000px;}
.y1e{bottom:334.282200px;}
.y137{bottom:334.295007px;}
.y1d4{bottom:335.263500px;}
.y15f{bottom:335.628600px;}
.y56{bottom:335.770350px;}
.yb4{bottom:335.920350px;}
.yfc{bottom:341.260950px;}
.y13b{bottom:342.864307px;}
.y192{bottom:347.121900px;}
.y80{bottom:348.462000px;}
.y1d3{bottom:350.263500px;}
.y135{bottom:352.210443px;}
.y1d{bottom:352.282200px;}
.y15e{bottom:353.628600px;}
.y55{bottom:353.770350px;}
.yb3{bottom:353.920350px;}
.y191{bottom:362.121900px;}
.y134{bottom:362.283450px;}
.y81{bottom:362.970000px;}
.y1d2{bottom:365.263500px;}
.y97{bottom:367.719300px;}
.ye8{bottom:367.891050px;}
.y1c{bottom:370.282200px;}
.y131{bottom:370.911131px;}
.y15d{bottom:371.628600px;}
.y54{bottom:371.770350px;}
.yb2{bottom:371.920350px;}
.y190{bottom:377.121900px;}
.y1d1{bottom:380.263500px;}
.y130{bottom:380.594672px;}
.ye7{bottom:384.139050px;}
.y96{bottom:387.219300px;}
.y1b{bottom:388.282200px;}
.y12f{bottom:389.614350px;}
.y15c{bottom:389.628600px;}
.yf7{bottom:389.635350px;}
.y53{bottom:389.770350px;}
.yb1{bottom:389.920350px;}
.y18f{bottom:392.121900px;}
.y1d0{bottom:395.263500px;}
.y7f{bottom:395.357100px;}
.y12d{bottom:397.005300px;}
.y127{bottom:397.873200px;}
.ye6{bottom:400.387050px;}
.y1a{bottom:406.282200px;}
.y18e{bottom:407.121900px;}
.y12c{bottom:407.612250px;}
.y15b{bottom:407.628600px;}
.y52{bottom:407.770350px;}
.yb0{bottom:407.920350px;}
.y132{bottom:408.031800px;}
.y1cf{bottom:410.263500px;}
.y12e{bottom:413.456250px;}
.y7e{bottom:414.857100px;}
.ye5{bottom:416.635050px;}
.y12b{bottom:418.226400px;}
.y18d{bottom:422.121900px;}
.y29{bottom:424.282200px;}
.yf6{bottom:425.230350px;}
.y1ce{bottom:425.263500px;}
.y15a{bottom:425.628600px;}
.y51{bottom:425.770350px;}
.yaf{bottom:425.920350px;}
.y12a{bottom:426.250050px;}
.y149{bottom:428.987117px;}
.ye4{bottom:432.883050px;}
.y129{bottom:436.862124px;}
.y18c{bottom:437.121900px;}
.y95{bottom:440.148900px;}
.y1cd{bottom:440.263500px;}
.y19{bottom:441.879450px;}
.y28{bottom:442.282200px;}
.y159{bottom:443.628600px;}
.y50{bottom:443.770350px;}
.yae{bottom:443.920350px;}
.y128{bottom:445.572000px;}
.ye3{bottom:449.131050px;}
.y18b{bottom:452.121900px;}
.y1cc{bottom:455.263500px;}
.y94{bottom:455.892900px;}
.y125{bottom:457.644450px;}
.y158{bottom:461.230350px;}
.y4f{bottom:461.770350px;}
.y7d{bottom:461.912100px;}
.yad{bottom:461.920350px;}
.y14a{bottom:463.091550px;}
.ye2{bottom:465.379050px;}
.y18a{bottom:467.121900px;}
.y124{bottom:468.266100px;}
.y126{bottom:468.847650px;}
.y1cb{bottom:470.263500px;}
.y93{bottom:471.636900px;}
.y4e{bottom:479.770350px;}
.y7c{bottom:479.912100px;}
.yac{bottom:479.920350px;}
.y189{bottom:482.121900px;}
.y11f{bottom:483.090900px;}
.y1ca{bottom:485.263500px;}
.y92{bottom:487.380900px;}
.y11e{bottom:494.853600px;}
.ye1{bottom:496.891050px;}
.y188{bottom:497.121900px;}
.y157{bottom:497.635350px;}
.y4d{bottom:497.770350px;}
.y7b{bottom:497.912100px;}
.yab{bottom:497.920350px;}
.y1c9{bottom:500.263500px;}
.y123{bottom:504.912252px;}
.y11d{bottom:505.467900px;}
.y121{bottom:510.461946px;}
.y187{bottom:512.121900px;}
.y1c8{bottom:515.263500px;}
.y156{bottom:515.635350px;}
.y4c{bottom:515.770350px;}
.y7a{bottom:515.912100px;}
.yaa{bottom:515.920350px;}
.y18{bottom:516.514200px;}
.y11c{bottom:519.858450px;}
.y186{bottom:527.121900px;}
.y11b{bottom:528.772650px;}
.y1c7{bottom:530.263500px;}
.y119{bottom:531.437250px;}
.ye0{bottom:531.790350px;}
.y120{bottom:532.909350px;}
.y155{bottom:533.635350px;}
.y4b{bottom:533.770350px;}
.y79{bottom:533.912100px;}
.ya9{bottom:533.920350px;}
.y11a{bottom:539.385897px;}
.y185{bottom:542.121900px;}
.y17{bottom:543.859200px;}
.y1c6{bottom:545.263500px;}
.y154{bottom:551.635350px;}
.y4a{bottom:551.770350px;}
.y78{bottom:551.912100px;}
.ya8{bottom:551.920350px;}
.y117{bottom:556.191600px;}
.y184{bottom:557.121900px;}
.y1c5{bottom:560.263500px;}
.y16{bottom:561.859200px;}
.y116{bottom:566.783850px;}
.y153{bottom:569.635350px;}
.y49{bottom:569.770350px;}
.y77{bottom:569.912100px;}
.ya7{bottom:569.920350px;}
.y183{bottom:572.121900px;}
.y1c4{bottom:575.263500px;}
.y115{bottom:576.132450px;}
.y15{bottom:579.859200px;}
.y114{bottom:586.754700px;}
.y182{bottom:587.121900px;}
.ydf{bottom:587.635350px;}
.y48{bottom:587.770350px;}
.y76{bottom:587.912100px;}
.ya6{bottom:587.920350px;}
.y1c3{bottom:590.263500px;}
.y113{bottom:595.513800px;}
.y14{bottom:597.859200px;}
.y181{bottom:602.121900px;}
.y112{bottom:604.275938px;}
.y1c2{bottom:605.263500px;}
.yde{bottom:605.635350px;}
.y47{bottom:605.770350px;}
.y75{bottom:605.912100px;}
.ya5{bottom:605.920350px;}
.y122{bottom:606.901500px;}
.y111{bottom:613.791300px;}
.y118{bottom:613.842750px;}
.y13{bottom:615.859200px;}
.y180{bottom:617.121900px;}
.y1c1{bottom:620.263500px;}
.y110{bottom:623.542980px;}
.ydd{bottom:623.635350px;}
.y46{bottom:623.770350px;}
.y74{bottom:623.920350px;}
.y17f{bottom:632.121900px;}
.y10f{bottom:632.782350px;}
.y12{bottom:633.815700px;}
.y1c0{bottom:635.263500px;}
.y10e{bottom:641.262150px;}
.y67{bottom:641.365350px;}
.ydc{bottom:641.635350px;}
.y45{bottom:641.770350px;}
.y73{bottom:641.920350px;}
.y17e{bottom:647.121900px;}
.y1bf{bottom:650.263500px;}
.y10d{bottom:651.125550px;}
.y11{bottom:651.815700px;}
.ydb{bottom:659.635350px;}
.y44{bottom:659.770350px;}
.y72{bottom:659.920350px;}
.y10c{bottom:660.805200px;}
.y17d{bottom:662.121900px;}
.y1be{bottom:665.263500px;}
.y10{bottom:669.816000px;}
.y17c{bottom:677.121900px;}
.y66{bottom:677.230350px;}
.yda{bottom:677.635350px;}
.y43{bottom:677.770350px;}
.y71{bottom:677.920350px;}
.y1bd{bottom:680.263500px;}
.yf{bottom:687.859500px;}
.y17b{bottom:692.121900px;}
.y1bc{bottom:695.263500px;}
.yd9{bottom:695.635350px;}
.y42{bottom:695.770350px;}
.y70{bottom:695.920350px;}
.ye{bottom:705.859500px;}
.y17a{bottom:707.121900px;}
.y1bb{bottom:710.263500px;}
.yd8{bottom:713.635350px;}
.y41{bottom:713.770350px;}
.y6f{bottom:713.920350px;}
.y179{bottom:722.121900px;}
.yd{bottom:723.816000px;}
.y1ba{bottom:725.263500px;}
.yd7{bottom:731.635350px;}
.y40{bottom:731.770350px;}
.yc7{bottom:731.785350px;}
.y6e{bottom:731.920350px;}
.y178{bottom:737.121900px;}
.y1b9{bottom:740.263500px;}
.yd6{bottom:749.635350px;}
.y3f{bottom:749.770350px;}
.yc6{bottom:749.785350px;}
.y6d{bottom:749.920350px;}
.y177{bottom:752.121900px;}
.y1b8{bottom:755.263500px;}
.y176{bottom:767.121900px;}
.yd5{bottom:767.635350px;}
.y3e{bottom:767.770350px;}
.yc5{bottom:767.785350px;}
.y6c{bottom:767.920350px;}
.yc{bottom:769.017450px;}
.y1b7{bottom:770.263500px;}
.yb{bottom:781.468200px;}
.y175{bottom:782.121900px;}
.y1b6{bottom:785.263500px;}
.ya4{bottom:785.515350px;}
.yd4{bottom:785.635350px;}
.y3d{bottom:785.770350px;}
.yc4{bottom:785.785350px;}
.y6b{bottom:785.920350px;}
.y174{bottom:797.121900px;}
.y1f7{bottom:800.263500px;}
.y1b5{bottom:800.265900px;}
.y152{bottom:803.635350px;}
.y3c{bottom:803.770350px;}
.yc3{bottom:803.785350px;}
.y6a{bottom:803.920350px;}
.y173{bottom:812.121900px;}
.ya{bottom:813.183600px;}
.y1f6{bottom:815.263500px;}
.y1b4{bottom:815.265900px;}
.yd3{bottom:821.230350px;}
.y151{bottom:821.635350px;}
.y3b{bottom:821.770350px;}
.y1fe{bottom:821.772600px;}
.yc2{bottom:821.785350px;}
.y69{bottom:821.920350px;}
.y172{bottom:827.121900px;}
.y1f5{bottom:830.263500px;}
.y1b3{bottom:830.265900px;}
.y9{bottom:832.108950px;}
.y150{bottom:839.635350px;}
.y3a{bottom:839.770350px;}
.y1fd{bottom:839.772600px;}
.yc1{bottom:839.785350px;}
.y8{bottom:840.183600px;}
.y171{bottom:842.121900px;}
.y1f4{bottom:845.263500px;}
.y1b2{bottom:845.265900px;}
.y68{bottom:857.515350px;}
.y14f{bottom:857.635350px;}
.y39{bottom:857.770350px;}
.yc0{bottom:857.785350px;}
.y7{bottom:859.108950px;}
.y1f3{bottom:860.263500px;}
.y1b1{bottom:860.265900px;}
.y170{bottom:875.232600px;}
.y1f2{bottom:875.263500px;}
.y1b0{bottom:875.265900px;}
.y38{bottom:875.770350px;}
.y1fc{bottom:875.772600px;}
.ybf{bottom:875.785350px;}
.y6{bottom:887.830950px;}
.y1f1{bottom:890.263500px;}
.y1af{bottom:890.265900px;}
.y14e{bottom:893.230350px;}
.y37{bottom:893.770350px;}
.ybe{bottom:893.785350px;}
.y1f0{bottom:905.263500px;}
.y1ae{bottom:905.265900px;}
.y36{bottom:911.770350px;}
.y1fb{bottom:911.772600px;}
.ybd{bottom:911.785350px;}
.y1ef{bottom:920.263500px;}
.y1ad{bottom:920.265900px;}
.y35{bottom:929.770350px;}
.y16f{bottom:929.772600px;}
.ybc{bottom:929.785350px;}
.y5{bottom:934.004400px;}
.y1ee{bottom:935.263500px;}
.y1ac{bottom:935.265900px;}
.y16e{bottom:947.367600px;}
.y34{bottom:947.770350px;}
.ybb{bottom:947.785350px;}
.y1ed{bottom:950.263500px;}
.y1ab{bottom:950.265900px;}
.y1ec{bottom:965.263500px;}
.y1aa{bottom:965.265900px;}
.y33{bottom:965.770350px;}
.y1fa{bottom:965.772600px;}
.yba{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y1eb{bottom:980.263500px;}
.y1a9{bottom:980.265900px;}
.y16d{bottom:983.367600px;}
.y32{bottom:983.770350px;}
.y1f9{bottom:983.772600px;}
.yb9{bottom:983.785350px;}
.y1ea{bottom:995.263500px;}
.y1a8{bottom:995.265900px;}
.y31{bottom:1001.770350px;}
.y1f8{bottom:1001.772600px;}
.yb8{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y1e9{bottom:1010.263500px;}
.y1a7{bottom:1010.265900px;}
.y30{bottom:1019.770350px;}
.y16c{bottom:1019.772600px;}
.yb7{bottom:1019.785350px;}
.y1e8{bottom:1025.263500px;}
.y1a6{bottom:1025.265900px;}
.y16b{bottom:1037.367600px;}
.y2f{bottom:1037.770350px;}
.yb6{bottom:1037.785350px;}
.y1e7{bottom:1040.263500px;}
.y1a5{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.yd2{bottom:1132.408950px;}
.y65{bottom:1132.418700px;}
.y1e6{bottom:1132.423500px;}
.ya3{bottom:1132.432200px;}
.yf5{bottom:1132.454700px;}
.y91{bottom:1132.458000px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h19{height:23.549049px;}
.h18{height:23.598237px;}
.h1a{height:25.653800px;}
.h1b{height:25.707384px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.h1d{height:32.028777px;}
.hf{height:32.783203px;}
.h7{height:32.805176px;}
.h1e{height:33.341963px;}
.h12{height:33.351562px;}
.h14{height:34.152187px;}
.h16{height:34.407563px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h17{height:36.157570px;}
.h15{height:36.375562px;}
.h1c{height:36.872775px;}
.hd{height:41.689453px;}
.h13{height:42.117188px;}
.ha{height:43.681641px;}
.hb{height:43.710938px;}
.hc{height:43.716234px;}
.h9{height:43.740234px;}
.he{height:52.646484px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x25{left:78.661800px;}
.x1c{left:80.793600px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x14{left:99.921300px;}
.x5b{left:102.047400px;}
.x4{left:106.299000px;}
.xc{left:110.555400px;}
.x2b{left:121.569600px;}
.x5e{left:123.307050px;}
.x3{left:125.427900px;}
.x6{left:131.811000px;}
.x28{left:144.580350px;}
.x35{left:148.128600px;}
.x33{left:163.773600px;}
.x11{left:166.000350px;}
.x1d{left:174.345600px;}
.x19{left:194.721300px;}
.x27{left:206.232450px;}
.x2e{left:209.949600px;}
.x23{left:211.100400px;}
.x5{left:212.876400px;}
.x17{left:214.725300px;}
.x30{left:217.461600px;}
.x2c{left:222.285600px;}
.x22{left:227.481300px;}
.x1b{left:228.849600px;}
.x36{left:276.752652px;}
.x24{left:294.637800px;}
.x3c{left:302.140350px;}
.x4c{left:308.205600px;}
.x2a{left:337.161600px;}
.x42{left:355.084836px;}
.x18{left:358.701300px;}
.x3b{left:372.120150px;}
.x1e{left:378.441600px;}
.x47{left:384.803400px;}
.x1f{left:386.949600px;}
.x41{left:401.785350px;}
.x40{left:409.094100px;}
.x37{left:414.703050px;}
.x38{left:416.690850px;}
.x39{left:421.291800px;}
.x48{left:424.705047px;}
.x4b{left:425.798070px;}
.x3a{left:430.359900px;}
.x4a{left:432.171150px;}
.x31{left:438.033600px;}
.x3d{left:439.258937px;}
.x3e{left:444.404100px;}
.xa{left:455.041500px;}
.xd{left:457.130400px;}
.x4f{left:458.809350px;}
.x2d{left:469.533600px;}
.x3f{left:471.787800px;}
.x26{left:473.220450px;}
.x12{left:478.390350px;}
.x7{left:480.471000px;}
.x5c{left:482.598450px;}
.x46{left:483.601800px;}
.xe{left:491.106600px;}
.x49{left:502.150950px;}
.x53{left:507.055371px;}
.x13{left:512.410350px;}
.x8{left:514.491000px;}
.x4d{left:533.044350px;}
.x43{left:536.209950px;}
.x45{left:538.205100px;}
.x56{left:557.116135px;}
.x50{left:569.135100px;}
.x44{left:574.225357px;}
.x16{left:582.813300px;}
.x20{left:591.045600px;}
.x21{left:599.553600px;}
.x29{left:600.716400px;}
.x55{left:604.452450px;}
.x54{left:609.509100px;}
.x4e{left:613.212385px;}
.x15{left:618.165300px;}
.x51{left:621.488587px;}
.x52{left:632.622750px;}
.x57{left:640.352700px;}
.x34{left:649.845600px;}
.x10{left:663.492300px;}
.x5a{left:680.253281px;}
.x2{left:693.365400px;}
.x59{left:696.785846px;}
.x58{left:705.208097px;}
.x5d{left:722.610450px;}
.xf{left:729.282150px;}
.x5f{left:744.758850px;}
.x32{left:745.821600px;}
.x1a{left:750.525300px;}
.x2f{left:754.845600px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-10.397333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:0.938667pt;}
.v4{vertical-align:1.920000pt;}
.v6{vertical-align:7.537536pt;}
.v1{vertical-align:27.005867pt;}
.ls19{letter-spacing:-5.909333pt;}
.ls9d{letter-spacing:-2.346667pt;}
.lsa0{letter-spacing:-1.706667pt;}
.ls70{letter-spacing:-1.258880pt;}
.ls73{letter-spacing:-1.224850pt;}
.ls71{letter-spacing:-1.195936pt;}
.ls72{letter-spacing:-1.162037pt;}
.ls17{letter-spacing:-0.693333pt;}
.ls9f{letter-spacing:-0.426667pt;}
.ls18{letter-spacing:-0.337600pt;}
.ls4c{letter-spacing:-0.298667pt;}
.ls76{letter-spacing:-0.289331pt;}
.ls56{letter-spacing:-0.266667pt;}
.lsa6{letter-spacing:-0.256000pt;}
.ls74{letter-spacing:-0.241109pt;}
.ls57{letter-spacing:-0.213333pt;}
.ls55{letter-spacing:-0.160000pt;}
.ls47{letter-spacing:-0.106667pt;}
.ls3d{letter-spacing:-0.053333pt;}
.ls9c{letter-spacing:-0.042667pt;}
.ls16{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.003680pt;}
.ls4a{letter-spacing:0.042667pt;}
.ls51{letter-spacing:0.053333pt;}
.ls9e{letter-spacing:0.085333pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls63{letter-spacing:0.128000pt;}
.ls27{letter-spacing:0.160000pt;}
.ls87{letter-spacing:0.170667pt;}
.lsd{letter-spacing:0.213333pt;}
.ls30{letter-spacing:0.266667pt;}
.ls81{letter-spacing:0.298667pt;}
.ls4d{letter-spacing:0.320000pt;}
.ls6f{letter-spacing:0.346192pt;}
.ls32{letter-spacing:0.373333pt;}
.ls77{letter-spacing:0.376877pt;}
.ls98{letter-spacing:0.384000pt;}
.ls75{letter-spacing:0.409136pt;}
.ls3e{letter-spacing:0.426667pt;}
.lsa2{letter-spacing:0.469333pt;}
.ls15{letter-spacing:0.480000pt;}
.ls86{letter-spacing:0.512000pt;}
.ls28{letter-spacing:0.533333pt;}
.ls8c{letter-spacing:0.554667pt;}
.ls13{letter-spacing:0.586667pt;}
.ls3{letter-spacing:0.640000pt;}
.lsa3{letter-spacing:0.682667pt;}
.ls3a{letter-spacing:0.693333pt;}
.ls2e{letter-spacing:0.746667pt;}
.ls83{letter-spacing:0.768000pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls84{letter-spacing:0.810667pt;}
.ls9{letter-spacing:0.853333pt;}
.ls48{letter-spacing:0.896000pt;}
.ls1e{letter-spacing:0.906667pt;}
.ls49{letter-spacing:0.938667pt;}
.ls26{letter-spacing:0.960000pt;}
.ls8d{letter-spacing:0.981333pt;}
.ls7{letter-spacing:1.013333pt;}
.ls2c{letter-spacing:1.066667pt;}
.ls7c{letter-spacing:1.109333pt;}
.ls36{letter-spacing:1.120000pt;}
.ls82{letter-spacing:1.152000pt;}
.ls1b{letter-spacing:1.173333pt;}
.ls99{letter-spacing:1.194667pt;}
.ls2d{letter-spacing:1.226667pt;}
.ls8b{letter-spacing:1.237333pt;}
.ls8{letter-spacing:1.280000pt;}
.ls7d{letter-spacing:1.322667pt;}
.lsc{letter-spacing:1.333333pt;}
.ls85{letter-spacing:1.365333pt;}
.lsb{letter-spacing:1.386667pt;}
.ls8f{letter-spacing:1.408000pt;}
.ls24{letter-spacing:1.440000pt;}
.ls25{letter-spacing:1.493333pt;}
.ls97{letter-spacing:1.536000pt;}
.lse{letter-spacing:1.546667pt;}
.ls90{letter-spacing:1.578667pt;}
.ls1d{letter-spacing:1.600000pt;}
.ls7f{letter-spacing:1.621333pt;}
.ls4{letter-spacing:1.653333pt;}
.lsf{letter-spacing:1.706667pt;}
.ls9b{letter-spacing:1.749333pt;}
.ls5{letter-spacing:1.760000pt;}
.ls10{letter-spacing:1.813333pt;}
.ls29{letter-spacing:1.866667pt;}
.ls96{letter-spacing:1.877333pt;}
.ls14{letter-spacing:1.920000pt;}
.ls9a{letter-spacing:1.962667pt;}
.ls12{letter-spacing:1.973333pt;}
.ls7b{letter-spacing:2.005333pt;}
.ls45{letter-spacing:2.026667pt;}
.ls79{letter-spacing:2.048000pt;}
.ls2b{letter-spacing:2.080000pt;}
.ls88{letter-spacing:2.090667pt;}
.ls2f{letter-spacing:2.133333pt;}
.ls61{letter-spacing:2.186667pt;}
.ls7e{letter-spacing:2.218667pt;}
.ls44{letter-spacing:2.240000pt;}
.ls80{letter-spacing:2.261333pt;}
.ls35{letter-spacing:2.293333pt;}
.ls2{letter-spacing:2.346667pt;}
.ls43{letter-spacing:2.400000pt;}
.ls7a{letter-spacing:2.432000pt;}
.ls37{letter-spacing:2.453333pt;}
.ls21{letter-spacing:2.506667pt;}
.ls95{letter-spacing:2.517333pt;}
.ls39{letter-spacing:2.560000pt;}
.lsa5{letter-spacing:2.602667pt;}
.ls33{letter-spacing:2.613333pt;}
.ls91{letter-spacing:2.645333pt;}
.ls1f{letter-spacing:2.666667pt;}
.lsa1{letter-spacing:2.688000pt;}
.ls54{letter-spacing:2.720000pt;}
.ls8a{letter-spacing:2.730667pt;}
.lsa{letter-spacing:2.773333pt;}
.ls53{letter-spacing:2.826667pt;}
.lsa4{letter-spacing:2.858667pt;}
.ls52{letter-spacing:2.880000pt;}
.ls3c{letter-spacing:2.933333pt;}
.ls93{letter-spacing:2.944000pt;}
.ls40{letter-spacing:2.986667pt;}
.ls62{letter-spacing:3.040000pt;}
.ls41{letter-spacing:3.093333pt;}
.ls66{letter-spacing:3.146667pt;}
.ls8e{letter-spacing:3.242667pt;}
.ls50{letter-spacing:3.253333pt;}
.ls11{letter-spacing:3.360000pt;}
.ls4e{letter-spacing:3.413333pt;}
.ls67{letter-spacing:3.466667pt;}
.ls42{letter-spacing:3.573333pt;}
.ls5b{letter-spacing:3.733333pt;}
.ls89{letter-spacing:3.882667pt;}
.ls78{letter-spacing:3.968000pt;}
.ls6{letter-spacing:4.000000pt;}
.ls92{letter-spacing:4.010667pt;}
.ls65{letter-spacing:4.320000pt;}
.ls94{letter-spacing:4.352000pt;}
.ls3f{letter-spacing:4.586667pt;}
.ls4f{letter-spacing:4.693333pt;}
.ls58{letter-spacing:4.960000pt;}
.ls4b{letter-spacing:5.333333pt;}
.ls3b{letter-spacing:5.813333pt;}
.ls31{letter-spacing:5.973333pt;}
.ls20{letter-spacing:6.026667pt;}
.ls23{letter-spacing:6.080000pt;}
.ls34{letter-spacing:6.133333pt;}
.ls5a{letter-spacing:6.186667pt;}
.ls2a{letter-spacing:6.293333pt;}
.ls38{letter-spacing:6.826667pt;}
.ls22{letter-spacing:6.933333pt;}
.ls59{letter-spacing:7.040000pt;}
.ls6d{letter-spacing:13.289755pt;}
.ls6b{letter-spacing:13.315888pt;}
.ls69{letter-spacing:13.322635pt;}
.ls6a{letter-spacing:15.310011pt;}
.ls6e{letter-spacing:15.361308pt;}
.ls6c{letter-spacing:15.382108pt;}
.ls68{letter-spacing:19.578816pt;}
.ls46{letter-spacing:49.792000pt;}
.ls5d{letter-spacing:99.626667pt;}
.ls60{letter-spacing:205.440000pt;}
.ls5f{letter-spacing:220.160000pt;}
.ls5c{letter-spacing:250.794667pt;}
.ls5e{letter-spacing:432.213333pt;}
.ls64{letter-spacing:901.504000pt;}
.ws98{word-spacing:-442.880000pt;}
.ws94{word-spacing:-261.461333pt;}
.ws4d{word-spacing:-53.600000pt;}
.wsa8{word-spacing:-40.000000pt;}
.ws3{word-spacing:-31.146667pt;}
.ws92{word-spacing:-18.293333pt;}
.ws70{word-spacing:-18.026667pt;}
.wsa9{word-spacing:-17.066667pt;}
.wsaa{word-spacing:-16.106667pt;}
.ws23{word-spacing:-16.000000pt;}
.ws93{word-spacing:-15.946667pt;}
.ws46{word-spacing:-15.893333pt;}
.ws15{word-spacing:-15.840000pt;}
.ws20{word-spacing:-15.786667pt;}
.ws49{word-spacing:-15.733333pt;}
.wsad{word-spacing:-15.466667pt;}
.wsd4{word-spacing:-15.413333pt;}
.ws4b{word-spacing:-15.360000pt;}
.ws5{word-spacing:-15.306667pt;}
.ws16{word-spacing:-15.253333pt;}
.ws1a{word-spacing:-15.200000pt;}
.ws6e{word-spacing:-15.146667pt;}
.ws74{word-spacing:-15.093333pt;}
.ws1d{word-spacing:-15.040000pt;}
.ws17{word-spacing:-14.986667pt;}
.ws14{word-spacing:-14.933333pt;}
.ws1c{word-spacing:-14.880000pt;}
.ws2{word-spacing:-14.826667pt;}
.ws22{word-spacing:-14.773333pt;}
.wsaf{word-spacing:-14.720000pt;}
.ws75{word-spacing:-14.613333pt;}
.ws24{word-spacing:-14.560000pt;}
.wse6{word-spacing:-14.549333pt;}
.wsab{word-spacing:-14.506667pt;}
.ws73{word-spacing:-14.453333pt;}
.ws1e{word-spacing:-14.400000pt;}
.ws1b{word-spacing:-14.346667pt;}
.ws1f{word-spacing:-14.293333pt;}
.ws18{word-spacing:-14.240000pt;}
.wsae{word-spacing:-14.186667pt;}
.ws19{word-spacing:-14.133333pt;}
.ws72{word-spacing:-14.080000pt;}
.ws21{word-spacing:-14.026667pt;}
.ws4a{word-spacing:-13.973333pt;}
.wse9{word-spacing:-13.909333pt;}
.ws6{word-spacing:-13.813333pt;}
.ws6f{word-spacing:-13.760000pt;}
.wsac{word-spacing:-13.653333pt;}
.wseb{word-spacing:-13.610667pt;}
.ws4c{word-spacing:-13.600000pt;}
.ws48{word-spacing:-13.546667pt;}
.ws47{word-spacing:-13.493333pt;}
.ws13{word-spacing:-13.440000pt;}
.wse7{word-spacing:-13.397333pt;}
.ws71{word-spacing:-13.386667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws76{word-spacing:-13.120000pt;}
.wsdc{word-spacing:-13.098667pt;}
.wsdf{word-spacing:-12.288000pt;}
.wse8{word-spacing:-12.245333pt;}
.wsea{word-spacing:-12.032000pt;}
.wsde{word-spacing:-11.989333pt;}
.wse5{word-spacing:-11.946667pt;}
.ws25{word-spacing:-11.861333pt;}
.wse1{word-spacing:-11.818667pt;}
.wsdd{word-spacing:-11.776000pt;}
.ws67{word-spacing:-11.562667pt;}
.wse3{word-spacing:-11.477333pt;}
.wse2{word-spacing:-11.434667pt;}
.ws7{word-spacing:-11.120000pt;}
.wsc5{word-spacing:-10.898142pt;}
.wsb0{word-spacing:-10.794667pt;}
.ws55{word-spacing:-10.666667pt;}
.wse0{word-spacing:-10.624000pt;}
.ws1{word-spacing:-9.076144pt;}
.wsec{word-spacing:-8.960000pt;}
.wse4{word-spacing:-8.320000pt;}
.ws6d{word-spacing:-7.773333pt;}
.wsc7{word-spacing:-7.521808pt;}
.wsc8{word-spacing:-7.474723pt;}
.wsc3{word-spacing:-7.112672pt;}
.wsc6{word-spacing:-7.097846pt;}
.ws87{word-spacing:-4.693333pt;}
.wsc9{word-spacing:-4.320000pt;}
.wsa{word-spacing:-4.163733pt;}
.wsf6{word-spacing:-3.882667pt;}
.wsb4{word-spacing:-3.733333pt;}
.ws86{word-spacing:-3.413333pt;}
.ws109{word-spacing:-2.858667pt;}
.wsb7{word-spacing:-2.773333pt;}
.wsb8{word-spacing:-2.666667pt;}
.ws84{word-spacing:-2.613333pt;}
.ws104{word-spacing:-2.602667pt;}
.ws9{word-spacing:-2.565333pt;}
.ws2a{word-spacing:-2.506667pt;}
.ws3f{word-spacing:-2.453333pt;}
.ws65{word-spacing:-2.346667pt;}
.ws5d{word-spacing:-2.133333pt;}
.wsfa{word-spacing:-2.090667pt;}
.wsd9{word-spacing:-2.080000pt;}
.wsee{word-spacing:-2.048000pt;}
.ws2f{word-spacing:-1.973333pt;}
.ws2c{word-spacing:-1.920000pt;}
.wsbf{word-spacing:-1.813333pt;}
.ws10{word-spacing:-1.760000pt;}
.ws100{word-spacing:-1.749333pt;}
.ws2e{word-spacing:-1.653333pt;}
.wsf0{word-spacing:-1.621333pt;}
.ws29{word-spacing:-1.600000pt;}
.ws45{word-spacing:-1.546667pt;}
.ws57{word-spacing:-1.493333pt;}
.ws2b{word-spacing:-1.440000pt;}
.ws5e{word-spacing:-1.386667pt;}
.ws5f{word-spacing:-1.333333pt;}
.ws8f{word-spacing:-1.280000pt;}
.ws10a{word-spacing:-1.237333pt;}
.wsb6{word-spacing:-1.226667pt;}
.wsba{word-spacing:-1.173333pt;}
.ws8b{word-spacing:-1.120000pt;}
.wsef{word-spacing:-1.109333pt;}
.ws36{word-spacing:-1.066667pt;}
.ws3e{word-spacing:-0.960000pt;}
.ws6b{word-spacing:-0.938667pt;}
.ws30{word-spacing:-0.906667pt;}
.wsc0{word-spacing:-0.853333pt;}
.ws28{word-spacing:-0.800000pt;}
.ws66{word-spacing:-0.768000pt;}
.wsbc{word-spacing:-0.746667pt;}
.ws40{word-spacing:-0.693333pt;}
.ws8d{word-spacing:-0.586667pt;}
.ws108{word-spacing:-0.554667pt;}
.ws31{word-spacing:-0.533333pt;}
.ws5b{word-spacing:-0.426667pt;}
.wsff{word-spacing:-0.384000pt;}
.wsd3{word-spacing:-0.377664pt;}
.wsbe{word-spacing:-0.320000pt;}
.ws58{word-spacing:-0.266667pt;}
.ws5c{word-spacing:-0.213333pt;}
.ws3a{word-spacing:-0.160000pt;}
.wsc2{word-spacing:-0.128000pt;}
.ws0{word-spacing:-0.112533pt;}
.ws26{word-spacing:-0.106667pt;}
.wsf7{word-spacing:-0.085333pt;}
.ws88{word-spacing:-0.053333pt;}
.wsb2{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.wsd{word-spacing:0.010667pt;}
.wsf2{word-spacing:0.042667pt;}
.wsb{word-spacing:0.053333pt;}
.wsc{word-spacing:0.064000pt;}
.wscb{word-spacing:0.085333pt;}
.ws83{word-spacing:0.106667pt;}
.wsfd{word-spacing:0.128000pt;}
.wsd1{word-spacing:0.241109pt;}
.ws106{word-spacing:0.256000pt;}
.ws10b{word-spacing:0.266667pt;}
.wsd2{word-spacing:0.289331pt;}
.ws34{word-spacing:0.320000pt;}
.ws64{word-spacing:0.373333pt;}
.wscc{word-spacing:0.384000pt;}
.wsbd{word-spacing:0.426667pt;}
.wsa6{word-spacing:0.533333pt;}
.ws9d{word-spacing:0.586667pt;}
.ws11{word-spacing:0.693333pt;}
.ws105{word-spacing:0.725333pt;}
.ws85{word-spacing:0.746667pt;}
.ws42{word-spacing:0.853333pt;}
.ws9f{word-spacing:0.960000pt;}
.ws91{word-spacing:1.013333pt;}
.ws35{word-spacing:1.120000pt;}
.wscf{word-spacing:1.162037pt;}
.wsca{word-spacing:1.173333pt;}
.wsce{word-spacing:1.195936pt;}
.wsd0{word-spacing:1.224850pt;}
.ws37{word-spacing:1.226667pt;}
.wscd{word-spacing:1.258880pt;}
.wsf8{word-spacing:1.322667pt;}
.ws5a{word-spacing:1.386667pt;}
.ws89{word-spacing:1.440000pt;}
.ws59{word-spacing:1.493333pt;}
.ws8c{word-spacing:1.546667pt;}
.ws27{word-spacing:1.600000pt;}
.wsfe{word-spacing:1.621333pt;}
.ws103{word-spacing:1.664000pt;}
.wsf9{word-spacing:1.792000pt;}
.wsf5{word-spacing:1.834667pt;}
.wsa5{word-spacing:1.866667pt;}
.wsfc{word-spacing:1.962667pt;}
.wsbb{word-spacing:1.973333pt;}
.ws8e{word-spacing:2.026667pt;}
.wsa1{word-spacing:2.186667pt;}
.ws9e{word-spacing:2.240000pt;}
.wsdb{word-spacing:2.346667pt;}
.ws82{word-spacing:2.400000pt;}
.ws33{word-spacing:2.453333pt;}
.ws3d{word-spacing:2.560000pt;}
.ws8a{word-spacing:2.613333pt;}
.wsf4{word-spacing:2.645333pt;}
.ws60{word-spacing:2.666667pt;}
.ws107{word-spacing:2.730667pt;}
.wsf1{word-spacing:2.773333pt;}
.wsfb{word-spacing:2.816000pt;}
.ws39{word-spacing:2.826667pt;}
.ws101{word-spacing:2.858667pt;}
.ws2d{word-spacing:2.880000pt;}
.ws61{word-spacing:2.933333pt;}
.ws12{word-spacing:2.986667pt;}
.wsd6{word-spacing:3.040000pt;}
.wsf3{word-spacing:3.072000pt;}
.wsa3{word-spacing:3.093333pt;}
.ws3b{word-spacing:3.253333pt;}
.ws102{word-spacing:3.285333pt;}
.wsd7{word-spacing:3.306667pt;}
.wsd5{word-spacing:3.360000pt;}
.ws6a{word-spacing:3.498667pt;}
.ws6c{word-spacing:3.541333pt;}
.wsa4{word-spacing:3.573333pt;}
.wsc1{word-spacing:3.626667pt;}
.wsa2{word-spacing:3.733333pt;}
.ws32{word-spacing:3.786667pt;}
.ws3c{word-spacing:3.840000pt;}
.ws38{word-spacing:3.893333pt;}
.ws90{word-spacing:3.946667pt;}
.wsd8{word-spacing:4.000000pt;}
.wsa7{word-spacing:4.053333pt;}
.wsb5{word-spacing:4.213333pt;}
.ws43{word-spacing:4.266667pt;}
.wsb9{word-spacing:4.320000pt;}
.wsf{word-spacing:4.373333pt;}
.wse{word-spacing:4.426667pt;}
.ws63{word-spacing:4.693333pt;}
.wsda{word-spacing:4.853333pt;}
.wsed{word-spacing:4.906667pt;}
.ws62{word-spacing:5.066667pt;}
.ws41{word-spacing:5.120000pt;}
.wsa0{word-spacing:6.186667pt;}
.ws44{word-spacing:7.040000pt;}
.wsc4{word-spacing:8.583492pt;}
.ws50{word-spacing:19.370667pt;}
.ws4f{word-spacing:79.104000pt;}
.ws4e{word-spacing:123.690667pt;}
.ws54{word-spacing:124.160000pt;}
.ws52{word-spacing:129.749333pt;}
.ws53{word-spacing:131.712000pt;}
.ws56{word-spacing:135.680000pt;}
.ws51{word-spacing:150.229333pt;}
.ws96{word-spacing:186.794667pt;}
.ws9b{word-spacing:194.773333pt;}
.ws95{word-spacing:197.461333pt;}
.ws69{word-spacing:201.642667pt;}
.ws97{word-spacing:208.128000pt;}
.ws80{word-spacing:208.256000pt;}
.ws7e{word-spacing:212.992000pt;}
.ws7a{word-spacing:220.117333pt;}
.ws78{word-spacing:224.853333pt;}
.ws81{word-spacing:227.200000pt;}
.ws7d{word-spacing:336.213333pt;}
.ws7b{word-spacing:340.949333pt;}
.ws9a{word-spacing:368.213333pt;}
.ws77{word-spacing:369.408000pt;}
.ws9c{word-spacing:389.546667pt;}
.ws99{word-spacing:409.088000pt;}
.ws79{word-spacing:477.482667pt;}
.ws68{word-spacing:533.504000pt;}
.ws7c{word-spacing:605.482667pt;}
.ws7f{word-spacing:631.082667pt;}
.wsb3{word-spacing:958.506667pt;}
.wsb1{word-spacing:1590.784000pt;}
._a{margin-left:-2575.538667pt;}
._42{margin-left:-2555.480000pt;}
._21{margin-left:-2554.376000pt;}
._39{margin-left:-432.213333pt;}
._31{margin-left:-250.794667pt;}
._c{margin-left:-6.920000pt;}
._5{margin-left:-5.685333pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.746667pt;}
._0{margin-left:-2.053333pt;}
._6{margin-left:-0.920000pt;}
._2{width:0.952533pt;}
._9{width:2.520000pt;}
._3{width:4.163733pt;}
._7{width:5.173333pt;}
._8{width:6.293333pt;}
._b{width:7.306667pt;}
._29{width:9.120000pt;}
._1f{width:30.672000pt;}
._18{width:32.426667pt;}
._14{width:50.266667pt;}
._11{width:64.512000pt;}
._25{width:66.645333pt;}
._20{width:74.440000pt;}
._17{width:81.578667pt;}
._1a{width:82.602667pt;}
._13{width:87.509333pt;}
._27{width:90.325333pt;}
._10{width:93.184000pt;}
._19{width:114.304000pt;}
._41{width:119.649070pt;}
._15{width:121.434667pt;}
._1e{width:124.586667pt;}
._23{width:129.322667pt;}
._1b{width:137.562667pt;}
._16{width:139.221333pt;}
._28{width:143.274667pt;}
._12{width:147.413333pt;}
._1c{width:160.293333pt;}
._e{width:200.746667pt;}
._d{width:201.984000pt;}
._40{width:205.440000pt;}
._35{width:208.128000pt;}
._f{width:219.904000pt;}
._1d{width:227.024000pt;}
._2b{width:234.325333pt;}
._30{width:242.602667pt;}
._2f{width:272.213333pt;}
._2a{width:290.005333pt;}
._36{width:316.885333pt;}
._24{width:322.304000pt;}
._2e{width:354.005333pt;}
._2d{width:363.434667pt;}
._37{width:384.133333pt;}
._3d{width:409.088000pt;}
._33{width:416.469333pt;}
._3f{width:419.754667pt;}
._32{width:425.941333pt;}
._38{width:429.189333pt;}
._3b{width:459.738667pt;}
._34{width:478.122667pt;}
._3c{width:494.128000pt;}
._3e{width:504.794667pt;}
._3a{width:550.405333pt;}
._22{width:566.514667pt;}
._26{width:670.634667pt;}
._2c{width:786.773333pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fsd{font-size:31.406400pt;}
.fsb{font-size:31.472000pt;}
.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;}
.fsc{font-size:48.221867pt;}
.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;}
.y1a4{bottom:68.552800pt;}
.y1e5{bottom:71.345333pt;}
.yf9{bottom:73.903467pt;}
.y64{bottom:74.462533pt;}
.y109{bottom:74.733067pt;}
.y2b{bottom:78.246000pt;}
.y1a3{bottom:81.886133pt;}
.y90{bottom:81.978667pt;}
.yd1{bottom:81.988400pt;}
.yf4{bottom:82.370400pt;}
.y1e4{bottom:84.678667pt;}
.yf8{bottom:87.898133pt;}
.y108{bottom:88.727733pt;}
.y16a{bottom:90.336533pt;}
.y63{bottom:90.462533pt;}
.y2a{bottom:91.576000pt;}
.y1a2{bottom:95.219467pt;}
.yd0{bottom:96.431067pt;}
.y8f{bottom:96.645333pt;}
.yf3{bottom:96.813067pt;}
.y1e3{bottom:98.012000pt;}
.y107{bottom:102.722400pt;}
.y169{bottom:105.976533pt;}
.y62{bottom:106.462533pt;}
.y1a1{bottom:108.552800pt;}
.y102{bottom:109.988400pt;}
.ycf{bottom:110.884400pt;}
.y8e{bottom:111.088000pt;}
.yf2{bottom:111.255733pt;}
.y1e2{bottom:111.345333pt;}
.y106{bottom:116.717067pt;}
.y1a0{bottom:121.886133pt;}
.y61{bottom:122.462533pt;}
.y1e1{bottom:124.678667pt;}
.yce{bottom:125.327067pt;}
.y8d{bottom:125.530667pt;}
.yf1{bottom:125.698400pt;}
.y100{bottom:126.180400pt;}
.y19f{bottom:135.219467pt;}
.ya2{bottom:136.729067pt;}
.y1e0{bottom:138.012000pt;}
.y168{bottom:138.336533pt;}
.y60{bottom:138.462533pt;}
.y103{bottom:138.777733pt;}
.ycd{bottom:139.780400pt;}
.yf0{bottom:140.141067pt;}
.y8c{bottom:140.197333pt;}
.y10b{bottom:141.242226pt;}
.y101{bottom:145.711067pt;}
.y105{bottom:147.289733pt;}
.y19e{bottom:148.552800pt;}
.y1df{bottom:151.345333pt;}
.ya1{bottom:151.395733pt;}
.y27{bottom:153.139733pt;}
.ycc{bottom:154.223067pt;}
.y167{bottom:154.336533pt;}
.y5f{bottom:154.462533pt;}
.yef{bottom:154.583733pt;}
.y8b{bottom:154.640000pt;}
.y104{bottom:159.172400pt;}
.y19d{bottom:161.886133pt;}
.y10a{bottom:164.376667pt;}
.y1de{bottom:164.678667pt;}
.ya0{bottom:165.838400pt;}
.ycb{bottom:168.676400pt;}
.yee{bottom:169.026400pt;}
.y8a{bottom:169.082667pt;}
.y26{bottom:169.139733pt;}
.y166{bottom:170.336533pt;}
.y5e{bottom:170.462533pt;}
.y148{bottom:172.280884pt;}
.y19c{bottom:175.219467pt;}
.yff{bottom:176.047067pt;}
.y1dd{bottom:178.012000pt;}
.y9f{bottom:180.505067pt;}
.y147{bottom:180.768463pt;}
.yca{bottom:183.119067pt;}
.yed{bottom:183.469067pt;}
.y89{bottom:183.525333pt;}
.y25{bottom:185.139733pt;}
.y165{bottom:185.976533pt;}
.y5d{bottom:186.462533pt;}
.y142{bottom:187.750771pt;}
.y146{bottom:187.819200pt;}
.y19b{bottom:188.552800pt;}
.y1dc{bottom:191.345333pt;}
.y14d{bottom:191.455890pt;}
.y9e{bottom:194.947733pt;}
.y145{bottom:197.255200pt;}
.yec{bottom:197.911733pt;}
.y88{bottom:197.968000pt;}
.yfe{bottom:199.812400pt;}
.y24{bottom:201.139733pt;}
.y19a{bottom:201.886133pt;}
.y5c{bottom:202.462533pt;}
.y1db{bottom:204.678667pt;}
.y144{bottom:206.696800pt;}
.y9d{bottom:209.390400pt;}
.yc9{bottom:211.129733pt;}
.y87{bottom:212.634667pt;}
.y143{bottom:213.828267pt;}
.y199{bottom:215.219467pt;}
.y23{bottom:217.139733pt;}
.y1da{bottom:218.012000pt;}
.y164{bottom:218.336533pt;}
.y5b{bottom:218.462533pt;}
.y141{bottom:222.543067pt;}
.y9c{bottom:224.057067pt;}
.yeb{bottom:225.922400pt;}
.y86{bottom:227.301333pt;}
.y198{bottom:228.552800pt;}
.y14b{bottom:229.081002pt;}
.y140{bottom:230.362461pt;}
.y1d9{bottom:231.345333pt;}
.y22{bottom:233.139733pt;}
.y163{bottom:234.336533pt;}
.y5a{bottom:234.462533pt;}
.y13f{bottom:237.342533pt;}
.y9b{bottom:238.499733pt;}
.y85{bottom:241.744000pt;}
.y197{bottom:241.886133pt;}
.yc8{bottom:242.142533pt;}
.y1d8{bottom:244.678667pt;}
.y13d{bottom:246.744949pt;}
.y21{bottom:249.139733pt;}
.y162{bottom:250.336533pt;}
.y59{bottom:250.462533pt;}
.y9a{bottom:253.166400pt;}
.y13c{bottom:255.130457pt;}
.y196{bottom:255.219467pt;}
.y84{bottom:256.410667pt;}
.yea{bottom:256.940267pt;}
.y1d7{bottom:258.012000pt;}
.y13e{bottom:263.306000pt;}
.y136{bottom:263.790797pt;}
.y20{bottom:265.139733pt;}
.y161{bottom:266.336533pt;}
.y58{bottom:266.462533pt;}
.y99{bottom:267.833067pt;}
.y195{bottom:268.552800pt;}
.yfd{bottom:270.831067pt;}
.y83{bottom:271.077333pt;}
.y1d6{bottom:271.345333pt;}
.y13a{bottom:271.909327pt;}
.ye9{bottom:274.273600pt;}
.y139{bottom:280.938667pt;}
.y1f{bottom:281.139733pt;}
.y194{bottom:281.886133pt;}
.y160{bottom:282.336533pt;}
.y57{bottom:282.462533pt;}
.yb5{bottom:282.595867pt;}
.y1d5{bottom:284.678667pt;}
.y14c{bottom:288.864061pt;}
.y138{bottom:289.424741pt;}
.y133{bottom:290.145733pt;}
.y193{bottom:295.219467pt;}
.y98{bottom:295.843733pt;}
.yfb{bottom:295.908400pt;}
.yfa{bottom:296.580400pt;}
.y82{bottom:296.858667pt;}
.y1e{bottom:297.139733pt;}
.y137{bottom:297.151117pt;}
.y1d4{bottom:298.012000pt;}
.y15f{bottom:298.336533pt;}
.y56{bottom:298.462533pt;}
.yb4{bottom:298.595867pt;}
.yfc{bottom:303.343067pt;}
.y13b{bottom:304.768273pt;}
.y192{bottom:308.552800pt;}
.y80{bottom:309.744000pt;}
.y1d3{bottom:311.345333pt;}
.y135{bottom:313.075949pt;}
.y1d{bottom:313.139733pt;}
.y15e{bottom:314.336533pt;}
.y55{bottom:314.462533pt;}
.yb3{bottom:314.595867pt;}
.y191{bottom:321.886133pt;}
.y134{bottom:322.029733pt;}
.y81{bottom:322.640000pt;}
.y1d2{bottom:324.678667pt;}
.y97{bottom:326.861600pt;}
.ye8{bottom:327.014267pt;}
.y1c{bottom:329.139733pt;}
.y131{bottom:329.698783pt;}
.y15d{bottom:330.336533pt;}
.y54{bottom:330.462533pt;}
.yb2{bottom:330.595867pt;}
.y190{bottom:335.219467pt;}
.y1d1{bottom:338.012000pt;}
.y130{bottom:338.306375pt;}
.ye7{bottom:341.456933pt;}
.y96{bottom:344.194933pt;}
.y1b{bottom:345.139733pt;}
.y12f{bottom:346.323867pt;}
.y15c{bottom:346.336533pt;}
.yf7{bottom:346.342533pt;}
.y53{bottom:346.462533pt;}
.yb1{bottom:346.595867pt;}
.y18f{bottom:348.552800pt;}
.y1d0{bottom:351.345333pt;}
.y7f{bottom:351.428533pt;}
.y12d{bottom:352.893600pt;}
.y127{bottom:353.665067pt;}
.ye6{bottom:355.899600pt;}
.y1a{bottom:361.139733pt;}
.y18e{bottom:361.886133pt;}
.y12c{bottom:362.322000pt;}
.y15b{bottom:362.336533pt;}
.y52{bottom:362.462533pt;}
.yb0{bottom:362.595867pt;}
.y132{bottom:362.694933pt;}
.y1cf{bottom:364.678667pt;}
.y12e{bottom:367.516667pt;}
.y7e{bottom:368.761867pt;}
.ye5{bottom:370.342267pt;}
.y12b{bottom:371.756800pt;}
.y18d{bottom:375.219467pt;}
.y29{bottom:377.139733pt;}
.yf6{bottom:377.982533pt;}
.y1ce{bottom:378.012000pt;}
.y15a{bottom:378.336533pt;}
.y51{bottom:378.462533pt;}
.yaf{bottom:378.595867pt;}
.y12a{bottom:378.888933pt;}
.y149{bottom:381.321882pt;}
.ye4{bottom:384.784933pt;}
.y129{bottom:388.321888pt;}
.y18c{bottom:388.552800pt;}
.y95{bottom:391.243467pt;}
.y1cd{bottom:391.345333pt;}
.y19{bottom:392.781733pt;}
.y28{bottom:393.139733pt;}
.y159{bottom:394.336533pt;}
.y50{bottom:394.462533pt;}
.yae{bottom:394.595867pt;}
.y128{bottom:396.064000pt;}
.ye3{bottom:399.227600pt;}
.y18b{bottom:401.886133pt;}
.y1cc{bottom:404.678667pt;}
.y94{bottom:405.238133pt;}
.y125{bottom:406.795067pt;}
.y158{bottom:409.982533pt;}
.y4f{bottom:410.462533pt;}
.y7d{bottom:410.588533pt;}
.yad{bottom:410.595867pt;}
.y14a{bottom:411.636933pt;}
.ye2{bottom:413.670267pt;}
.y18a{bottom:415.219467pt;}
.y124{bottom:416.236533pt;}
.y126{bottom:416.753467pt;}
.y1cb{bottom:418.012000pt;}
.y93{bottom:419.232800pt;}
.y4e{bottom:426.462533pt;}
.y7c{bottom:426.588533pt;}
.yac{bottom:426.595867pt;}
.y189{bottom:428.552800pt;}
.y11f{bottom:429.414133pt;}
.y1ca{bottom:431.345333pt;}
.y92{bottom:433.227467pt;}
.y11e{bottom:439.869867pt;}
.ye1{bottom:441.680933pt;}
.y188{bottom:441.886133pt;}
.y157{bottom:442.342533pt;}
.y4d{bottom:442.462533pt;}
.y7b{bottom:442.588533pt;}
.yab{bottom:442.595867pt;}
.y1c9{bottom:444.678667pt;}
.y123{bottom:448.810891pt;}
.y11d{bottom:449.304800pt;}
.y121{bottom:453.743952pt;}
.y187{bottom:455.219467pt;}
.y1c8{bottom:458.012000pt;}
.y156{bottom:458.342533pt;}
.y4c{bottom:458.462533pt;}
.y7a{bottom:458.588533pt;}
.yaa{bottom:458.595867pt;}
.y18{bottom:459.123733pt;}
.y11c{bottom:462.096400pt;}
.y186{bottom:468.552800pt;}
.y11b{bottom:470.020133pt;}
.y1c7{bottom:471.345333pt;}
.y119{bottom:472.388667pt;}
.ye0{bottom:472.702533pt;}
.y120{bottom:473.697200pt;}
.y155{bottom:474.342533pt;}
.y4b{bottom:474.462533pt;}
.y79{bottom:474.588533pt;}
.ya9{bottom:474.595867pt;}
.y11a{bottom:479.454131pt;}
.y185{bottom:481.886133pt;}
.y17{bottom:483.430400pt;}
.y1c6{bottom:484.678667pt;}
.y154{bottom:490.342533pt;}
.y4a{bottom:490.462533pt;}
.y78{bottom:490.588533pt;}
.ya8{bottom:490.595867pt;}
.y117{bottom:494.392533pt;}
.y184{bottom:495.219467pt;}
.y1c5{bottom:498.012000pt;}
.y16{bottom:499.430400pt;}
.y116{bottom:503.807867pt;}
.y153{bottom:506.342533pt;}
.y49{bottom:506.462533pt;}
.y77{bottom:506.588533pt;}
.ya7{bottom:506.595867pt;}
.y183{bottom:508.552800pt;}
.y1c4{bottom:511.345333pt;}
.y115{bottom:512.117733pt;}
.y15{bottom:515.430400pt;}
.y114{bottom:521.559733pt;}
.y182{bottom:521.886133pt;}
.ydf{bottom:522.342533pt;}
.y48{bottom:522.462533pt;}
.y76{bottom:522.588533pt;}
.ya6{bottom:522.595867pt;}
.y1c3{bottom:524.678667pt;}
.y113{bottom:529.345600pt;}
.y14{bottom:531.430400pt;}
.y181{bottom:535.219467pt;}
.y112{bottom:537.134167pt;}
.y1c2{bottom:538.012000pt;}
.yde{bottom:538.342533pt;}
.y47{bottom:538.462533pt;}
.y75{bottom:538.588533pt;}
.ya5{bottom:538.595867pt;}
.y122{bottom:539.468000pt;}
.y111{bottom:545.592267pt;}
.y118{bottom:545.638000pt;}
.y13{bottom:547.430400pt;}
.y180{bottom:548.552800pt;}
.y1c1{bottom:551.345333pt;}
.y110{bottom:554.260426pt;}
.ydd{bottom:554.342533pt;}
.y46{bottom:554.462533pt;}
.y74{bottom:554.595867pt;}
.y17f{bottom:561.886133pt;}
.y10f{bottom:562.473200pt;}
.y12{bottom:563.391733pt;}
.y1c0{bottom:564.678667pt;}
.y10e{bottom:570.010800pt;}
.y67{bottom:570.102533pt;}
.ydc{bottom:570.342533pt;}
.y45{bottom:570.462533pt;}
.y73{bottom:570.595867pt;}
.y17e{bottom:575.219467pt;}
.y1bf{bottom:578.012000pt;}
.y10d{bottom:578.778267pt;}
.y11{bottom:579.391733pt;}
.ydb{bottom:586.342533pt;}
.y44{bottom:586.462533pt;}
.y72{bottom:586.595867pt;}
.y10c{bottom:587.382400pt;}
.y17d{bottom:588.552800pt;}
.y1be{bottom:591.345333pt;}
.y10{bottom:595.392000pt;}
.y17c{bottom:601.886133pt;}
.y66{bottom:601.982533pt;}
.yda{bottom:602.342533pt;}
.y43{bottom:602.462533pt;}
.y71{bottom:602.595867pt;}
.y1bd{bottom:604.678667pt;}
.yf{bottom:611.430667pt;}
.y17b{bottom:615.219467pt;}
.y1bc{bottom:618.012000pt;}
.yd9{bottom:618.342533pt;}
.y42{bottom:618.462533pt;}
.y70{bottom:618.595867pt;}
.ye{bottom:627.430667pt;}
.y17a{bottom:628.552800pt;}
.y1bb{bottom:631.345333pt;}
.yd8{bottom:634.342533pt;}
.y41{bottom:634.462533pt;}
.y6f{bottom:634.595867pt;}
.y179{bottom:641.886133pt;}
.yd{bottom:643.392000pt;}
.y1ba{bottom:644.678667pt;}
.yd7{bottom:650.342533pt;}
.y40{bottom:650.462533pt;}
.yc7{bottom:650.475867pt;}
.y6e{bottom:650.595867pt;}
.y178{bottom:655.219467pt;}
.y1b9{bottom:658.012000pt;}
.yd6{bottom:666.342533pt;}
.y3f{bottom:666.462533pt;}
.yc6{bottom:666.475867pt;}
.y6d{bottom:666.595867pt;}
.y177{bottom:668.552800pt;}
.y1b8{bottom:671.345333pt;}
.y176{bottom:681.886133pt;}
.yd5{bottom:682.342533pt;}
.y3e{bottom:682.462533pt;}
.yc5{bottom:682.475867pt;}
.y6c{bottom:682.595867pt;}
.yc{bottom:683.571067pt;}
.y1b7{bottom:684.678667pt;}
.yb{bottom:694.638400pt;}
.y175{bottom:695.219467pt;}
.y1b6{bottom:698.012000pt;}
.ya4{bottom:698.235867pt;}
.yd4{bottom:698.342533pt;}
.y3d{bottom:698.462533pt;}
.yc4{bottom:698.475867pt;}
.y6b{bottom:698.595867pt;}
.y174{bottom:708.552800pt;}
.y1f7{bottom:711.345333pt;}
.y1b5{bottom:711.347467pt;}
.y152{bottom:714.342533pt;}
.y3c{bottom:714.462533pt;}
.yc3{bottom:714.475867pt;}
.y6a{bottom:714.595867pt;}
.y173{bottom:721.886133pt;}
.ya{bottom:722.829867pt;}
.y1f6{bottom:724.678667pt;}
.y1b4{bottom:724.680800pt;}
.yd3{bottom:729.982533pt;}
.y151{bottom:730.342533pt;}
.y3b{bottom:730.462533pt;}
.y1fe{bottom:730.464533pt;}
.yc2{bottom:730.475867pt;}
.y69{bottom:730.595867pt;}
.y172{bottom:735.219467pt;}
.y1f5{bottom:738.012000pt;}
.y1b3{bottom:738.014133pt;}
.y9{bottom:739.652400pt;}
.y150{bottom:746.342533pt;}
.y3a{bottom:746.462533pt;}
.y1fd{bottom:746.464533pt;}
.yc1{bottom:746.475867pt;}
.y8{bottom:746.829867pt;}
.y171{bottom:748.552800pt;}
.y1f4{bottom:751.345333pt;}
.y1b2{bottom:751.347467pt;}
.y68{bottom:762.235867pt;}
.y14f{bottom:762.342533pt;}
.y39{bottom:762.462533pt;}
.yc0{bottom:762.475867pt;}
.y7{bottom:763.652400pt;}
.y1f3{bottom:764.678667pt;}
.y1b1{bottom:764.680800pt;}
.y170{bottom:777.984533pt;}
.y1f2{bottom:778.012000pt;}
.y1b0{bottom:778.014133pt;}
.y38{bottom:778.462533pt;}
.y1fc{bottom:778.464533pt;}
.ybf{bottom:778.475867pt;}
.y6{bottom:789.183067pt;}
.y1f1{bottom:791.345333pt;}
.y1af{bottom:791.347467pt;}
.y14e{bottom:793.982533pt;}
.y37{bottom:794.462533pt;}
.ybe{bottom:794.475867pt;}
.y1f0{bottom:804.678667pt;}
.y1ae{bottom:804.680800pt;}
.y36{bottom:810.462533pt;}
.y1fb{bottom:810.464533pt;}
.ybd{bottom:810.475867pt;}
.y1ef{bottom:818.012000pt;}
.y1ad{bottom:818.014133pt;}
.y35{bottom:826.462533pt;}
.y16f{bottom:826.464533pt;}
.ybc{bottom:826.475867pt;}
.y5{bottom:830.226133pt;}
.y1ee{bottom:831.345333pt;}
.y1ac{bottom:831.347467pt;}
.y16e{bottom:842.104533pt;}
.y34{bottom:842.462533pt;}
.ybb{bottom:842.475867pt;}
.y1ed{bottom:844.678667pt;}
.y1ab{bottom:844.680800pt;}
.y1ec{bottom:858.012000pt;}
.y1aa{bottom:858.014133pt;}
.y33{bottom:858.462533pt;}
.y1fa{bottom:858.464533pt;}
.yba{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y1eb{bottom:871.345333pt;}
.y1a9{bottom:871.347467pt;}
.y16d{bottom:874.104533pt;}
.y32{bottom:874.462533pt;}
.y1f9{bottom:874.464533pt;}
.yb9{bottom:874.475867pt;}
.y1ea{bottom:884.678667pt;}
.y1a8{bottom:884.680800pt;}
.y31{bottom:890.462533pt;}
.y1f8{bottom:890.464533pt;}
.yb8{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y1e9{bottom:898.012000pt;}
.y1a7{bottom:898.014133pt;}
.y30{bottom:906.462533pt;}
.y16c{bottom:906.464533pt;}
.yb7{bottom:906.475867pt;}
.y1e8{bottom:911.345333pt;}
.y1a6{bottom:911.347467pt;}
.y16b{bottom:922.104533pt;}
.y2f{bottom:922.462533pt;}
.yb6{bottom:922.475867pt;}
.y1e7{bottom:924.678667pt;}
.y1a5{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.yd2{bottom:1006.585733pt;}
.y65{bottom:1006.594400pt;}
.y1e6{bottom:1006.598667pt;}
.ya3{bottom:1006.606400pt;}
.yf5{bottom:1006.626400pt;}
.y91{bottom:1006.629333pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h19{height:20.932488pt;}
.h18{height:20.976211pt;}
.h1a{height:22.803377pt;}
.h1b{height:22.851008pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.h1d{height:28.470024pt;}
.hf{height:29.140625pt;}
.h7{height:29.160156pt;}
.h1e{height:29.637300pt;}
.h12{height:29.645833pt;}
.h14{height:30.357500pt;}
.h16{height:30.584500pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h17{height:32.140062pt;}
.h15{height:32.333833pt;}
.h1c{height:32.775800pt;}
.hd{height:37.057292pt;}
.h13{height:37.437500pt;}
.ha{height:38.828125pt;}
.hb{height:38.854167pt;}
.hc{height:38.858875pt;}
.h9{height:38.880208pt;}
.he{height:46.796875pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x25{left:69.921600pt;}
.x1c{left:71.816533pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x14{left:88.818933pt;}
.x5b{left:90.708800pt;}
.x4{left:94.488000pt;}
.xc{left:98.271467pt;}
.x2b{left:108.061867pt;}
.x5e{left:109.606267pt;}
.x3{left:111.491467pt;}
.x6{left:117.165333pt;}
.x28{left:128.515867pt;}
.x35{left:131.669867pt;}
.x33{left:145.576533pt;}
.x11{left:147.555867pt;}
.x1d{left:154.973867pt;}
.x19{left:173.085600pt;}
.x27{left:183.317733pt;}
.x2e{left:186.621867pt;}
.x23{left:187.644800pt;}
.x5{left:189.223467pt;}
.x17{left:190.866933pt;}
.x30{left:193.299200pt;}
.x2c{left:197.587200pt;}
.x22{left:202.205600pt;}
.x1b{left:203.421867pt;}
.x36{left:246.002357pt;}
.x24{left:261.900267pt;}
.x3c{left:268.569200pt;}
.x4c{left:273.960533pt;}
.x2a{left:299.699200pt;}
.x42{left:315.630965pt;}
.x18{left:318.845600pt;}
.x3b{left:330.773467pt;}
.x1e{left:336.392533pt;}
.x47{left:342.047467pt;}
.x1f{left:343.955200pt;}
.x41{left:357.142533pt;}
.x40{left:363.639200pt;}
.x37{left:368.624933pt;}
.x38{left:370.391867pt;}
.x39{left:374.481600pt;}
.x48{left:377.515597pt;}
.x4b{left:378.487173pt;}
.x3a{left:382.542133pt;}
.x4a{left:384.152133pt;}
.x31{left:389.363200pt;}
.x3d{left:390.452388pt;}
.x3e{left:395.025867pt;}
.xa{left:404.481333pt;}
.xd{left:406.338133pt;}
.x4f{left:407.830533pt;}
.x2d{left:417.363200pt;}
.x3f{left:419.366933pt;}
.x26{left:420.640400pt;}
.x12{left:425.235867pt;}
.x7{left:427.085333pt;}
.x5c{left:428.976400pt;}
.x46{left:429.868267pt;}
.xe{left:436.539200pt;}
.x49{left:446.356400pt;}
.x53{left:450.715885pt;}
.x13{left:455.475867pt;}
.x8{left:457.325333pt;}
.x4d{left:473.817200pt;}
.x43{left:476.631067pt;}
.x45{left:478.404533pt;}
.x56{left:495.214342pt;}
.x50{left:505.897867pt;}
.x44{left:510.422540pt;}
.x16{left:518.056267pt;}
.x20{left:525.373867pt;}
.x21{left:532.936533pt;}
.x29{left:533.970133pt;}
.x55{left:537.291067pt;}
.x54{left:541.785867pt;}
.x4e{left:545.077676pt;}
.x15{left:549.480267pt;}
.x51{left:552.434300pt;}
.x52{left:562.331333pt;}
.x57{left:569.202400pt;}
.x34{left:577.640533pt;}
.x10{left:589.770933pt;}
.x5a{left:604.669583pt;}
.x2{left:616.324800pt;}
.x59{left:619.365197pt;}
.x58{left:626.851642pt;}
.x5d{left:642.320400pt;}
.xf{left:648.250800pt;}
.x5f{left:662.007867pt;}
.x32{left:662.952533pt;}
.x1a{left:667.133600pt;}
.x2f{left:670.973867pt;}
}




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