
    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_673b7099fdaaf3bc8ceb89cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_7fa03df2dde6fbd4a004b170.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_7e9ca4a1860721cd7c1e413b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065581;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_8ad27ac1a25a77226045aec8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222000;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_430ce0dbf1c726339c658ba5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213000;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_b85f37779a3bab027bce6751.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.732000;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_8dd1863600493c9e8c572002.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.179000;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_5d0f74d20cef748009503896.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_7e9ca4a1860721cd7c1e413b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065581;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_4ee4ddf09a77c0f3d1bbc519.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.230000;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_e861ddfcd67d6ea31713bb85.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.328000;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_8a3984a3d8d503551f799914.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.624000;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_23f6b301e037edb7b8d4b532.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.676000;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_a8fbb0eff91ba3fd185e3c60.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.646000;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_89addfce70757984f04416f0.woff2')format("woff");}.fff{font-family:fff;line-height:0.856000;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_0e502310406b2b232871d430.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.872000;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_0a83d7aa1c57b9d1edf95299.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.856000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v5{vertical-align:-24.018000px;}
.v2{vertical-align:-20.399963px;}
.v4{vertical-align:-14.999817px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.570401px;}
.v1{vertical-align:24.000000px;}
.ls3b{letter-spacing:-1.530000px;}
.ls39{letter-spacing:-0.969000px;}
.ls4c{letter-spacing:-0.480000px;}
.ls41{letter-spacing:-0.420000px;}
.ls6f{letter-spacing:-0.385025px;}
.ls19{letter-spacing:-0.360000px;}
.ls87{letter-spacing:-0.357000px;}
.ls88{letter-spacing:-0.306000px;}
.ls42{letter-spacing:-0.300000px;}
.ls68{letter-spacing:-0.251064px;}
.ls1b{letter-spacing:-0.240000px;}
.ls6e{letter-spacing:-0.236718px;}
.ls6b{letter-spacing:-0.213903px;}
.ls64{letter-spacing:-0.209220px;}
.lsa6{letter-spacing:-0.204000px;}
.ls1a{letter-spacing:-0.180000px;}
.ls3a{letter-spacing:-0.153000px;}
.ls67{letter-spacing:-0.138920px;}
.ls6a{letter-spacing:-0.125532px;}
.ls32{letter-spacing:-0.120000px;}
.lsa7{letter-spacing:-0.102000px;}
.ls69{letter-spacing:-0.083688px;}
.ls1c{letter-spacing:-0.060000px;}
.ls86{letter-spacing:-0.051000px;}
.ls18{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.000037px;}
.ls2{letter-spacing:0.000085px;}
.ls9a{letter-spacing:0.025500px;}
.ls30{letter-spacing:0.030000px;}
.ls60{letter-spacing:0.047344px;}
.ls97{letter-spacing:0.051000px;}
.ls1e{letter-spacing:0.060000px;}
.ls61{letter-spacing:0.085561px;}
.ls5f{letter-spacing:0.092614px;}
.ls75{letter-spacing:0.102000px;}
.lsb1{letter-spacing:0.107078px;}
.ls40{letter-spacing:0.120000px;}
.ls62{letter-spacing:0.128342px;}
.ls73{letter-spacing:0.150000px;}
.ls8b{letter-spacing:0.153000px;}
.ls63{letter-spacing:0.171122px;}
.ls16{letter-spacing:0.178791px;}
.ls2f{letter-spacing:0.180000px;}
.ls91{letter-spacing:0.204000px;}
.ls4a{letter-spacing:0.209908px;}
.ls43{letter-spacing:0.210028px;}
.ls45{letter-spacing:0.210086px;}
.ls3{letter-spacing:0.240000px;}
.ls44{letter-spacing:0.243485px;}
.ls17{letter-spacing:0.255000px;}
.ls5{letter-spacing:0.270000px;}
.ls7f{letter-spacing:0.288000px;}
.ls70{letter-spacing:0.299464px;}
.ls6{letter-spacing:0.300000px;}
.lsa4{letter-spacing:0.305980px;}
.ls81{letter-spacing:0.306000px;}
.ls74{letter-spacing:0.330000px;}
.ls49{letter-spacing:0.331279px;}
.ls4b{letter-spacing:0.339697px;}
.ls59{letter-spacing:0.345024px;}
.ls89{letter-spacing:0.357000px;}
.ls24{letter-spacing:0.360000px;}
.ls55{letter-spacing:0.371984px;}
.ls71{letter-spacing:0.390000px;}
.ls76{letter-spacing:0.408000px;}
.ls4{letter-spacing:0.420000px;}
.ls9f{letter-spacing:0.433500px;}
.ls5a{letter-spacing:0.434944px;}
.ls22{letter-spacing:0.450000px;}
.ls7c{letter-spacing:0.459000px;}
.ls50{letter-spacing:0.471611px;}
.ls23{letter-spacing:0.480000px;}
.ls54{letter-spacing:0.487244px;}
.ls21{letter-spacing:0.510000px;}
.ls52{letter-spacing:0.521986px;}
.ls78{letter-spacing:0.535500px;}
.ls11{letter-spacing:0.540000px;}
.ls48{letter-spacing:0.546575px;}
.ls7d{letter-spacing:0.561000px;}
.lsb3{letter-spacing:0.586500px;}
.ls13{letter-spacing:0.600000px;}
.ls7a{letter-spacing:0.612000px;}
.lsf{letter-spacing:0.630000px;}
.ls10{letter-spacing:0.660000px;}
.ls8f{letter-spacing:0.663000px;}
.ls92{letter-spacing:0.678300px;}
.ls4f{letter-spacing:0.688200px;}
.ls51{letter-spacing:0.690000px;}
.ls83{letter-spacing:0.714000px;}
.lsb4{letter-spacing:0.719100px;}
.ls8{letter-spacing:0.720000px;}
.ls7e{letter-spacing:0.739500px;}
.ls7b{letter-spacing:0.765000px;}
.ls53{letter-spacing:0.768568px;}
.lsc{letter-spacing:0.780000px;}
.ls80{letter-spacing:0.790500px;}
.ls47{letter-spacing:0.794965px;}
.ls9{letter-spacing:0.810000px;}
.ls46{letter-spacing:0.815986px;}
.ls77{letter-spacing:0.816000px;}
.ls14{letter-spacing:0.840000px;}
.ls96{letter-spacing:0.867000px;}
.ls3f{letter-spacing:0.870000px;}
.lsae{letter-spacing:0.897600px;}
.lsb{letter-spacing:0.900000px;}
.ls8e{letter-spacing:0.918000px;}
.ls5e{letter-spacing:0.930000px;}
.ls58{letter-spacing:0.957001px;}
.lsd{letter-spacing:0.960000px;}
.ls9b{letter-spacing:0.969000px;}
.ls2e{letter-spacing:0.990000px;}
.ls12{letter-spacing:1.020000px;}
.ls33{letter-spacing:1.050000px;}
.ls93{letter-spacing:1.071000px;}
.ls56{letter-spacing:1.074000px;}
.lse{letter-spacing:1.080000px;}
.ls3e{letter-spacing:1.110000px;}
.lsa2{letter-spacing:1.122000px;}
.ls82{letter-spacing:1.137300px;}
.lsa{letter-spacing:1.140000px;}
.ls3d{letter-spacing:1.146000px;}
.ls5c{letter-spacing:1.152000px;}
.ls85{letter-spacing:1.173000px;}
.ls27{letter-spacing:1.200000px;}
.ls2d{letter-spacing:1.260000px;}
.ls79{letter-spacing:1.275000px;}
.ls1f{letter-spacing:1.320000px;}
.ls2b{letter-spacing:1.350000px;}
.ls8d{letter-spacing:1.351500px;}
.ls57{letter-spacing:1.360195px;}
.lsa3{letter-spacing:1.377000px;}
.ls1d{letter-spacing:1.380000px;}
.ls9c{letter-spacing:1.428000px;}
.ls15{letter-spacing:1.440000px;}
.lsa1{letter-spacing:1.479000px;}
.ls5b{letter-spacing:1.481993px;}
.lsaa{letter-spacing:1.489200px;}
.ls25{letter-spacing:1.500000px;}
.lsa8{letter-spacing:1.555500px;}
.ls95{letter-spacing:1.581000px;}
.ls7{letter-spacing:1.620000px;}
.ls4e{letter-spacing:1.679989px;}
.ls29{letter-spacing:1.680000px;}
.lsac{letter-spacing:1.708500px;}
.ls72{letter-spacing:1.710000px;}
.lsad{letter-spacing:1.734000px;}
.ls34{letter-spacing:1.740000px;}
.lsb2{letter-spacing:1.749300px;}
.ls9d{letter-spacing:1.785000px;}
.ls26{letter-spacing:1.800000px;}
.ls37{letter-spacing:1.830000px;}
.ls3c{letter-spacing:1.835987px;}
.lsa0{letter-spacing:1.836000px;}
.ls90{letter-spacing:1.856393px;}
.ls20{letter-spacing:1.860000px;}
.ls9e{letter-spacing:1.887000px;}
.ls2c{letter-spacing:1.890000px;}
.ls31{letter-spacing:1.920000px;}
.ls36{letter-spacing:1.950000px;}
.lsb0{letter-spacing:1.978773px;}
.ls8a{letter-spacing:1.983900px;}
.lsb5{letter-spacing:1.989000px;}
.ls4d{letter-spacing:2.040000px;}
.ls2a{letter-spacing:2.100000px;}
.lsa9{letter-spacing:2.142000px;}
.ls28{letter-spacing:2.160000px;}
.ls84{letter-spacing:2.203176px;}
.ls99{letter-spacing:2.228700px;}
.ls5d{letter-spacing:2.362523px;}
.ls98{letter-spacing:2.412300px;}
.ls94{letter-spacing:2.585700px;}
.ls35{letter-spacing:3.060000px;}
.lsa5{letter-spacing:3.350680px;}
.ls0{letter-spacing:3.990000px;}
.lsaf{letter-spacing:6.018000px;}
.ls8c{letter-spacing:6.171000px;}
.lsab{letter-spacing:8.175300px;}
.ls1{letter-spacing:40.090208px;}
.ls6c{letter-spacing:329.752854px;}
.ls65{letter-spacing:332.450580px;}
.ls6d{letter-spacing:346.437269px;}
.ls66{letter-spacing:348.769740px;}
.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;}
}
.ws7d{word-spacing:-358.226484px;}
.ws82{word-spacing:-356.105685px;}
.ws7c{word-spacing:-341.907324px;}
.ws81{word-spacing:-339.421270px;}
.ws98{word-spacing:-16.080000px;}
.ws29{word-spacing:-16.020000px;}
.ws28{word-spacing:-15.960000px;}
.ws2a{word-spacing:-15.720000px;}
.ws7a{word-spacing:-15.300000px;}
.ws79{word-spacing:-15.000000px;}
.wsde{word-spacing:-14.458500px;}
.wsb5{word-spacing:-14.127000px;}
.wsba{word-spacing:-13.719000px;}
.wsb8{word-spacing:-13.566000px;}
.wsb7{word-spacing:-13.515000px;}
.wsb6{word-spacing:-13.413000px;}
.wsdf{word-spacing:-13.362000px;}
.wsb9{word-spacing:-13.158000px;}
.wsb4{word-spacing:-13.107000px;}
.ws9d{word-spacing:-13.005000px;}
.ws55{word-spacing:-12.750000px;}
.ws9e{word-spacing:-12.699000px;}
.ws57{word-spacing:-12.597000px;}
.ws54{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.wsdd{word-spacing:-12.393000px;}
.ws56{word-spacing:-11.781000px;}
.ws5{word-spacing:-11.520000px;}
.ws1{word-spacing:-9.996000px;}
.ws85{word-spacing:-9.967879px;}
.ws84{word-spacing:-9.796757px;}
.ws83{word-spacing:-9.753976px;}
.ws9c{word-spacing:-9.741000px;}
.ws80{word-spacing:-9.454512px;}
.ws0{word-spacing:-9.408000px;}
.ws7f{word-spacing:-9.373056px;}
.ws7b{word-spacing:-9.247524px;}
.ws7e{word-spacing:-9.205680px;}
.ws7{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws69{word-spacing:-7.500000px;}
.ws68{word-spacing:-6.375000px;}
.wsb{word-spacing:-2.400000px;}
.ws64{word-spacing:-2.160000px;}
.ws49{word-spacing:-1.920000px;}
.ws9{word-spacing:-1.890000px;}
.wse6{word-spacing:-1.734000px;}
.wsc{word-spacing:-1.500000px;}
.ws2c{word-spacing:-1.440000px;}
.wsea{word-spacing:-1.428000px;}
.ws61{word-spacing:-1.380000px;}
.ws45{word-spacing:-1.320000px;}
.wsa3{word-spacing:-1.275000px;}
.ws51{word-spacing:-1.260000px;}
.ws50{word-spacing:-1.200000px;}
.ws34{word-spacing:-1.140000px;}
.ws2e{word-spacing:-1.080000px;}
.ws3a{word-spacing:-1.020000px;}
.wsd7{word-spacing:-0.969000px;}
.ws19{word-spacing:-0.960000px;}
.wsd9{word-spacing:-0.918000px;}
.ws14{word-spacing:-0.900000px;}
.wsd6{word-spacing:-0.867000px;}
.ws38{word-spacing:-0.840000px;}
.ws23{word-spacing:-0.780000px;}
.wscf{word-spacing:-0.765000px;}
.wse{word-spacing:-0.720000px;}
.wsb1{word-spacing:-0.714000px;}
.wsc0{word-spacing:-0.663000px;}
.ws6c{word-spacing:-0.660000px;}
.ws27{word-spacing:-0.612000px;}
.ws21{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.570000px;}
.wsc2{word-spacing:-0.561000px;}
.ws1d{word-spacing:-0.540000px;}
.wse3{word-spacing:-0.510000px;}
.ws52{word-spacing:-0.480000px;}
.ws3c{word-spacing:-0.420000px;}
.wsd5{word-spacing:-0.408000px;}
.ws3f{word-spacing:-0.360000px;}
.wsbb{word-spacing:-0.357000px;}
.wsac{word-spacing:-0.306000px;}
.ws4{word-spacing:-0.300000px;}
.wsad{word-spacing:-0.255000px;}
.ws4c{word-spacing:-0.240000px;}
.wsed{word-spacing:-0.204000px;}
.ws10{word-spacing:-0.180000px;}
.ws94{word-spacing:-0.171122px;}
.wsc6{word-spacing:-0.153000px;}
.ws60{word-spacing:-0.120000px;}
.wse4{word-spacing:-0.102000px;}
.ws6{word-spacing:-0.072000px;}
.ws70{word-spacing:-0.060000px;}
.wsbc{word-spacing:-0.051000px;}
.ws8{word-spacing:0.000000px;}
.wsc4{word-spacing:0.051000px;}
.ws5a{word-spacing:0.060000px;}
.wsec{word-spacing:0.102000px;}
.ws31{word-spacing:0.120000px;}
.ws8d{word-spacing:0.138920px;}
.wsc8{word-spacing:0.153000px;}
.ws1e{word-spacing:0.180000px;}
.ws92{word-spacing:0.236718px;}
.ws5c{word-spacing:0.240000px;}
.wse8{word-spacing:0.255000px;}
.ws9f{word-spacing:0.300000px;}
.wse1{word-spacing:0.306000px;}
.wsc5{word-spacing:0.357000px;}
.ws43{word-spacing:0.360000px;}
.ws93{word-spacing:0.385025px;}
.ws1b{word-spacing:0.420000px;}
.wsaa{word-spacing:0.459000px;}
.ws8b{word-spacing:0.480000px;}
.ws40{word-spacing:0.540000px;}
.wscb{word-spacing:0.561000px;}
.ws22{word-spacing:0.600000px;}
.ws6f{word-spacing:0.660000px;}
.ws97{word-spacing:0.663000px;}
.ws16{word-spacing:0.720000px;}
.ws3b{word-spacing:0.780000px;}
.ws15{word-spacing:0.840000px;}
.ws1c{word-spacing:0.900000px;}
.ws72{word-spacing:0.960000px;}
.ws67{word-spacing:0.969000px;}
.ws41{word-spacing:1.020000px;}
.ws5b{word-spacing:1.080000px;}
.wsa8{word-spacing:1.122000px;}
.ws71{word-spacing:1.140000px;}
.wsc1{word-spacing:1.173000px;}
.ws99{word-spacing:1.200000px;}
.wsae{word-spacing:1.224000px;}
.ws74{word-spacing:1.260000px;}
.wsa4{word-spacing:1.275000px;}
.ws6a{word-spacing:1.320000px;}
.wse5{word-spacing:1.326000px;}
.wseb{word-spacing:1.377000px;}
.ws6d{word-spacing:1.380000px;}
.wsbf{word-spacing:1.428000px;}
.ws75{word-spacing:1.440000px;}
.wsd{word-spacing:1.500000px;}
.wsce{word-spacing:1.530000px;}
.ws3d{word-spacing:1.560000px;}
.wsb0{word-spacing:1.581000px;}
.ws46{word-spacing:1.620000px;}
.wsd1{word-spacing:1.632000px;}
.ws17{word-spacing:1.680000px;}
.wsc9{word-spacing:1.683000px;}
.wsab{word-spacing:1.734000px;}
.wsca{word-spacing:1.785000px;}
.ws11{word-spacing:1.800000px;}
.wsa9{word-spacing:1.836000px;}
.ws4a{word-spacing:1.860000px;}
.wsaf{word-spacing:1.887000px;}
.ws47{word-spacing:1.920000px;}
.wsee{word-spacing:1.938000px;}
.ws37{word-spacing:1.980000px;}
.wsdb{word-spacing:1.989000px;}
.ws20{word-spacing:2.040000px;}
.wsd2{word-spacing:2.091000px;}
.ws53{word-spacing:2.100000px;}
.ws95{word-spacing:2.142000px;}
.ws8a{word-spacing:2.160000px;}
.wsc3{word-spacing:2.244000px;}
.ws13{word-spacing:2.280000px;}
.ws5f{word-spacing:2.340000px;}
.wsd3{word-spacing:2.346000px;}
.ws32{word-spacing:2.400000px;}
.wsdc{word-spacing:2.448000px;}
.ws5d{word-spacing:2.460000px;}
.wsa5{word-spacing:2.499000px;}
.ws18{word-spacing:2.520000px;}
.wscc{word-spacing:2.550000px;}
.ws33{word-spacing:2.580000px;}
.ws8f{word-spacing:2.601000px;}
.ws4d{word-spacing:2.640000px;}
.wsbe{word-spacing:2.652000px;}
.ws65{word-spacing:2.700000px;}
.wsd0{word-spacing:2.754000px;}
.wsa1{word-spacing:2.760000px;}
.wse2{word-spacing:2.805000px;}
.ws6b{word-spacing:2.820000px;}
.wsa2{word-spacing:2.880000px;}
.ws1f{word-spacing:2.940000px;}
.ws42{word-spacing:3.000000px;}
.ws1a{word-spacing:3.060000px;}
.wsb3{word-spacing:3.111000px;}
.ws2d{word-spacing:3.120000px;}
.wscd{word-spacing:3.162000px;}
.wsa0{word-spacing:3.240000px;}
.ws12{word-spacing:3.300000px;}
.wsa6{word-spacing:3.315000px;}
.ws9a{word-spacing:3.360000px;}
.wsc7{word-spacing:3.417000px;}
.ws39{word-spacing:3.420000px;}
.wsd4{word-spacing:3.519000px;}
.ws35{word-spacing:3.540000px;}
.ws6e{word-spacing:3.600000px;}
.wsd8{word-spacing:3.672000px;}
.wsda{word-spacing:3.825000px;}
.ws8c{word-spacing:3.840000px;}
.wsb2{word-spacing:3.876000px;}
.ws4f{word-spacing:3.900000px;}
.ws4b{word-spacing:3.960000px;}
.ws48{word-spacing:4.080000px;}
.ws4e{word-spacing:4.140000px;}
.ws63{word-spacing:4.320000px;}
.ws44{word-spacing:4.380000px;}
.wsa7{word-spacing:4.437000px;}
.ws2f{word-spacing:4.440000px;}
.ws25{word-spacing:4.500000px;}
.ws87{word-spacing:4.620000px;}
.wsbd{word-spacing:4.794000px;}
.ws24{word-spacing:4.800000px;}
.ws89{word-spacing:4.860000px;}
.ws2b{word-spacing:4.980000px;}
.ws66{word-spacing:4.998000px;}
.ws73{word-spacing:5.040000px;}
.ws76{word-spacing:5.100000px;}
.wse9{word-spacing:5.151000px;}
.ws5e{word-spacing:5.340000px;}
.ws3e{word-spacing:5.400000px;}
.wsf{word-spacing:5.700000px;}
.ws88{word-spacing:5.820000px;}
.wse0{word-spacing:5.865000px;}
.ws9b{word-spacing:6.300000px;}
.ws36{word-spacing:6.600000px;}
.wse7{word-spacing:6.630000px;}
.ws78{word-spacing:6.960000px;}
.ws30{word-spacing:7.080000px;}
.ws86{word-spacing:7.800000px;}
.ws77{word-spacing:8.400000px;}
.ws8e{word-spacing:8.517000px;}
.ws62{word-spacing:8.820000px;}
.ws90{word-spacing:10.149000px;}
.ws96{word-spacing:10.659000px;}
.ws91{word-spacing:12.852000px;}
.wsef{word-spacing:13.668000px;}
.wsf0{word-spacing:17.799000px;}
.ws26{word-spacing:72.267000px;}
.ws58{word-spacing:389.691000px;}
.ws59{word-spacing:714.051000px;}
._a{margin-left:-2959.376944px;}
._24{margin-left:-348.727896px;}
._27{margin-left:-346.394488px;}
._23{margin-left:-331.739232px;}
._26{margin-left:-329.025602px;}
._c{margin-left:-96.900000px;}
._7{margin-left:-16.575000px;}
._22{margin-left:-12.360000px;}
._20{margin-left:-9.918000px;}
._1e{margin-left:-8.172000px;}
._4{margin-left:-7.012500px;}
._2a{margin-left:-5.753173px;}
._1{margin-left:-4.622700px;}
._5{margin-left:-3.120827px;}
._0{margin-left:-1.632000px;}
._2{width:1.056000px;}
._3{width:2.668800px;}
._6{width:3.744000px;}
._b{width:5.250000px;}
._1d{width:6.354000px;}
._1f{width:9.126000px;}
._21{width:12.179992px;}
._29{width:13.310994px;}
._e{width:15.814727px;}
._8{width:18.360000px;}
._9{width:54.621000px;}
._14{width:72.318000px;}
._28{width:87.251490px;}
._15{width:95.241817px;}
._18{width:103.530000px;}
._25{width:107.855955px;}
._16{width:123.318000px;}
._1c{width:181.662000px;}
._1b{width:248.013000px;}
._12{width:293.352000px;}
._11{width:318.852000px;}
._f{width:405.246000px;}
._1a{width:417.690000px;}
._13{width:430.235991px;}
._10{width:535.040991px;}
._19{width:685.338000px;}
._17{width:980.015975px;}
._d{width:1593.954000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fsc{font-size:41.844000px;}
.fs6{font-size:42.000000px;}
.fsb{font-size:42.010200px;}
.fse{font-size:42.780599px;}
.fsd{font-size:46.306800px;}
.fsf{font-size:47.343600px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:60.014997px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y11a{bottom:2.144545px;}
.y128{bottom:3.214050px;}
.y13d{bottom:3.285141px;}
.y119{bottom:7.395264px;}
.y4{bottom:68.547300px;}
.y1{bottom:69.499649px;}
.y39{bottom:112.938300px;}
.y6f{bottom:113.415344px;}
.ye3{bottom:114.132305px;}
.y12f{bottom:114.304048px;}
.ye4{bottom:114.409800px;}
.y144{bottom:114.436650px;}
.y105{bottom:114.735260px;}
.y112{bottom:114.735306px;}
.y1ac{bottom:116.614823px;}
.yaa{bottom:119.513100px;}
.y113{bottom:120.739794px;}
.y2e{bottom:122.461349px;}
.y16a{bottom:125.566943px;}
.y12e{bottom:129.298048px;}
.y143{bottom:129.430650px;}
.y1ab{bottom:131.608823px;}
.y1ed{bottom:132.004073px;}
.y6e{bottom:132.165344px;}
.ye2{bottom:132.882305px;}
.y38{bottom:133.032303px;}
.y104{bottom:133.485260px;}
.y111{bottom:133.485306px;}
.ya9{bottom:138.765152px;}
.y169{bottom:140.560943px;}
.y2d{bottom:141.211349px;}
.y12d{bottom:144.292048px;}
.y142{bottom:144.424650px;}
.y1aa{bottom:146.602823px;}
.y1ec{bottom:146.998073px;}
.y37{bottom:150.491553px;}
.y6d{bottom:150.915344px;}
.ye1{bottom:151.632305px;}
.y103{bottom:152.235260px;}
.y110{bottom:152.235306px;}
.ya8{bottom:152.936865px;}
.y168{bottom:155.554943px;}
.y12c{bottom:159.286048px;}
.y141{bottom:159.418650px;}
.y2c{bottom:159.961349px;}
.y1a9{bottom:161.596823px;}
.y1eb{bottom:161.992073px;}
.y36{bottom:165.485553px;}
.ya7{bottom:167.930865px;}
.y6c{bottom:169.665344px;}
.ye0{bottom:170.382305px;}
.y167{bottom:170.548943px;}
.y102{bottom:170.985260px;}
.y10f{bottom:170.985306px;}
.y12b{bottom:174.280048px;}
.y140{bottom:174.412650px;}
.y1a8{bottom:176.590823px;}
.y1ea{bottom:176.986073px;}
.y2b{bottom:178.711349px;}
.ya6{bottom:182.924865px;}
.y166{bottom:185.542943px;}
.y35{bottom:185.579556px;}
.y6b{bottom:188.415344px;}
.ydf{bottom:189.132305px;}
.y101{bottom:189.735260px;}
.y10e{bottom:189.735306px;}
.y1a7{bottom:191.584823px;}
.y1e9{bottom:191.980073px;}
.y2a{bottom:197.461349px;}
.y165{bottom:200.536943px;}
.ya5{bottom:202.177365px;}
.y34{bottom:203.032794px;}
.y1a6{bottom:206.578823px;}
.y1e8{bottom:206.974073px;}
.y6a{bottom:207.165344px;}
.y100{bottom:208.485260px;}
.y10d{bottom:208.485306px;}
.y127{bottom:209.353500px;}
.y13c{bottom:209.487007px;}
.y164{bottom:215.530943px;}
.y29{bottom:216.211349px;}
.y12a{bottom:216.875565px;}
.y1a5{bottom:221.572823px;}
.y1e7{bottom:221.968073px;}
.y33{bottom:223.126808px;}
.y69{bottom:225.915344px;}
.y11b{bottom:226.175560px;}
.yde{bottom:226.632294px;}
.y130{bottom:226.654655px;}
.yff{bottom:227.235260px;}
.y163{bottom:230.524943px;}
.yb9{bottom:230.957703px;}
.y13f{bottom:233.317039px;}
.y28{bottom:234.961349px;}
.y1a4{bottom:236.566823px;}
.y1e6{bottom:236.962073px;}
.y32{bottom:240.580059px;}
.y11c{bottom:243.258373px;}
.y68{bottom:244.665344px;}
.y131{bottom:245.039618px;}
.y162{bottom:245.518943px;}
.yfe{bottom:245.985260px;}
.y10c{bottom:245.985306px;}
.yb8{bottom:249.745354px;}
.y1a3{bottom:251.560823px;}
.y1e5{bottom:251.956073px;}
.y27{bottom:253.711349px;}
.y11d{bottom:260.341186px;}
.y161{bottom:260.512943px;}
.y31{bottom:260.674049px;}
.y67{bottom:263.415344px;}
.y132{bottom:263.424580px;}
.yfd{bottom:264.735260px;}
.y1a2{bottom:266.554823px;}
.y1e4{bottom:266.950073px;}
.yb7{bottom:268.415093px;}
.y26{bottom:272.461349px;}
.ydd{bottom:273.808823px;}
.y160{bottom:275.506943px;}
.y129{bottom:275.728043px;}
.y11e{bottom:277.423999px;}
.y1a1{bottom:281.548823px;}
.y133{bottom:281.809542px;}
.y1e3{bottom:281.944073px;}
.y66{bottom:282.165344px;}
.y13e{bottom:282.354149px;}
.yfc{bottom:283.485260px;}
.y30{bottom:285.674541px;}
.yb6{bottom:287.132093px;}
.y15f{bottom:290.500943px;}
.y25{bottom:291.211349px;}
.ydc{bottom:292.558823px;}
.y11f{bottom:294.506812px;}
.y1a0{bottom:296.542823px;}
.y1e2{bottom:296.938073px;}
.y134{bottom:300.194505px;}
.y2f{bottom:300.668541px;}
.y65{bottom:300.915344px;}
.yfb{bottom:302.235260px;}
.y15e{bottom:305.494943px;}
.yb5{bottom:305.849093px;}
.y24{bottom:309.961349px;}
.ydb{bottom:311.308823px;}
.y19f{bottom:311.536823px;}
.y120{bottom:311.589625px;}
.y1e1{bottom:311.932073px;}
.y135{bottom:318.579467px;}
.y64{bottom:319.665344px;}
.y15d{bottom:320.488943px;}
.yfa{bottom:320.985260px;}
.y10a{bottom:320.985306px;}
.yb4{bottom:324.566093px;}
.y19e{bottom:326.530823px;}
.y1e0{bottom:326.926073px;}
.y10b{bottom:326.989806px;}
.y121{bottom:328.672438px;}
.y23{bottom:328.711349px;}
.yda{bottom:330.058823px;}
.y15c{bottom:335.482943px;}
.y136{bottom:336.964429px;}
.y63{bottom:338.415344px;}
.yf9{bottom:339.735260px;}
.y108{bottom:339.735306px;}
.y19d{bottom:341.524823px;}
.y1df{bottom:341.920073px;}
.yb3{bottom:343.283093px;}
.y109{bottom:345.739806px;}
.y122{bottom:345.755251px;}
.y21{bottom:347.461349px;}
.yd9{bottom:348.808823px;}
.y15b{bottom:350.476943px;}
.y137{bottom:355.349391px;}
.y19c{bottom:356.518823px;}
.y1de{bottom:356.914073px;}
.y62{bottom:357.165344px;}
.yf8{bottom:358.485260px;}
.y107{bottom:358.485306px;}
.yb2{bottom:362.000093px;}
.y123{bottom:362.838064px;}
.y15a{bottom:365.470943px;}
.y20{bottom:366.211349px;}
.yd8{bottom:367.558823px;}
.y19b{bottom:371.512823px;}
.y1dd{bottom:371.908073px;}
.y138{bottom:373.734354px;}
.y61{bottom:375.915344px;}
.yf7{bottom:377.235260px;}
.y124{bottom:379.920877px;}
.y159{bottom:380.464943px;}
.yb1{bottom:380.717093px;}
.y106{bottom:383.239806px;}
.y1f{bottom:384.961349px;}
.yd7{bottom:386.308823px;}
.y19a{bottom:386.506823px;}
.y1dc{bottom:386.902073px;}
.y139{bottom:392.119316px;}
.y60{bottom:394.665344px;}
.yf6{bottom:395.985260px;}
.y125{bottom:397.003690px;}
.yb0{bottom:399.434093px;}
.y199{bottom:401.500823px;}
.y1db{bottom:401.896073px;}
.y1e{bottom:403.711349px;}
.yd6{bottom:405.058823px;}
.y13a{bottom:410.504278px;}
.y5f{bottom:413.415344px;}
.y126{bottom:414.086503px;}
.y158{bottom:414.214966px;}
.yf5{bottom:414.735260px;}
.yc1{bottom:414.735306px;}
.y198{bottom:416.494823px;}
.y1da{bottom:416.890073px;}
.yaf{bottom:418.151093px;}
.y1d{bottom:422.461349px;}
.yd5{bottom:423.808823px;}
.y13b{bottom:428.889240px;}
.y197{bottom:431.488823px;}
.y1d9{bottom:431.884073px;}
.y5e{bottom:432.165344px;}
.yf4{bottom:433.485260px;}
.yc0{bottom:433.485306px;}
.yae{bottom:436.868093px;}
.y1c{bottom:441.211349px;}
.yd4{bottom:442.558823px;}
.y196{bottom:446.482823px;}
.y1d8{bottom:446.878073px;}
.y5d{bottom:450.915344px;}
.yf3{bottom:452.235260px;}
.ybf{bottom:452.235306px;}
.yad{bottom:455.585093px;}
.y1b{bottom:459.961349px;}
.yd3{bottom:461.308823px;}
.y195{bottom:461.476823px;}
.y1d7{bottom:461.872073px;}
.y5c{bottom:469.665344px;}
.yf2{bottom:470.985260px;}
.ybe{bottom:470.985306px;}
.y194{bottom:476.470823px;}
.y1d6{bottom:476.866073px;}
.y1a{bottom:478.711349px;}
.yd2{bottom:480.058823px;}
.yac{bottom:483.660593px;}
.ya4{bottom:483.914115px;}
.y157{bottom:486.200733px;}
.y5b{bottom:488.415344px;}
.yf1{bottom:489.735260px;}
.ybd{bottom:489.735306px;}
.y193{bottom:491.464823px;}
.y1d5{bottom:491.860073px;}
.y19{bottom:497.461349px;}
.yd1{bottom:498.808823px;}
.ya3{bottom:498.908115px;}
.y156{bottom:501.194733px;}
.y192{bottom:506.458823px;}
.y1d4{bottom:506.854073px;}
.y5a{bottom:507.165344px;}
.yab{bottom:508.076843px;}
.yf0{bottom:508.485260px;}
.ybc{bottom:508.485306px;}
.ya2{bottom:513.902115px;}
.y155{bottom:516.188733px;}
.y18{bottom:516.211349px;}
.yd0{bottom:517.558823px;}
.y191{bottom:521.452823px;}
.y1d3{bottom:521.848073px;}
.y59{bottom:525.915344px;}
.yef{bottom:527.235260px;}
.ybb{bottom:527.235306px;}
.y154{bottom:531.182733px;}
.y17{bottom:534.961349px;}
.ycf{bottom:536.308823px;}
.y190{bottom:536.446823px;}
.y1d2{bottom:536.842073px;}
.y58{bottom:544.665344px;}
.yee{bottom:545.985260px;}
.yba{bottom:545.985306px;}
.y153{bottom:546.176733px;}
.y18f{bottom:551.440823px;}
.y1d1{bottom:551.836073px;}
.y16{bottom:553.711349px;}
.yce{bottom:555.058823px;}
.y152{bottom:561.170733px;}
.y57{bottom:563.415344px;}
.yed{bottom:564.735260px;}
.y89{bottom:564.735306px;}
.y18e{bottom:566.434823px;}
.y1d0{bottom:566.830073px;}
.y22{bottom:572.461349px;}
.ycd{bottom:573.808823px;}
.y118{bottom:576.087021px;}
.y20f{bottom:580.804073px;}
.y18d{bottom:581.428823px;}
.y1cf{bottom:581.824073px;}
.y56{bottom:582.165344px;}
.yec{bottom:583.485260px;}
.y88{bottom:583.485306px;}
.y15{bottom:591.211349px;}
.ycc{bottom:592.558823px;}
.y151{bottom:594.881733px;}
.y20e{bottom:595.798073px;}
.y18c{bottom:596.422823px;}
.y1ce{bottom:596.818073px;}
.y55{bottom:600.915344px;}
.yeb{bottom:602.235260px;}
.y87{bottom:602.235306px;}
.y150{bottom:609.875733px;}
.ycb{bottom:611.308823px;}
.y18b{bottom:611.416823px;}
.y1cd{bottom:611.812073px;}
.y54{bottom:619.665344px;}
.yea{bottom:620.985260px;}
.ya1{bottom:620.985306px;}
.y14f{bottom:624.869733px;}
.y18a{bottom:626.410823px;}
.y20d{bottom:626.640323px;}
.y1cc{bottom:626.806073px;}
.yca{bottom:630.058823px;}
.y53{bottom:638.415344px;}
.ye9{bottom:639.735260px;}
.y86{bottom:639.735306px;}
.y14e{bottom:639.863733px;}
.y189{bottom:641.404823px;}
.y20c{bottom:641.634323px;}
.y1cb{bottom:641.800073px;}
.y14{bottom:647.461395px;}
.yc9{bottom:648.808823px;}
.y14d{bottom:654.857733px;}
.y188{bottom:656.398823px;}
.y20b{bottom:656.628323px;}
.y1ca{bottom:656.794073px;}
.y52{bottom:657.165344px;}
.ye8{bottom:658.485260px;}
.ya0{bottom:658.485306px;}
.yc8{bottom:667.558823px;}
.y14c{bottom:669.851733px;}
.y187{bottom:671.392823px;}
.y20a{bottom:671.622323px;}
.y1c9{bottom:671.788073px;}
.y51{bottom:675.915344px;}
.ye7{bottom:677.235260px;}
.y85{bottom:677.235306px;}
.y14b{bottom:684.845733px;}
.y13{bottom:684.961395px;}
.yc7{bottom:686.308823px;}
.y186{bottom:686.386823px;}
.y209{bottom:686.616323px;}
.y1c8{bottom:686.782073px;}
.y50{bottom:694.665344px;}
.ye6{bottom:695.985260px;}
.y9f{bottom:695.985306px;}
.y185{bottom:701.380823px;}
.y208{bottom:701.610323px;}
.y1c7{bottom:701.776073px;}
.y117{bottom:701.989806px;}
.y12{bottom:703.711395px;}
.yc6{bottom:705.058823px;}
.y4f{bottom:713.415344px;}
.ye5{bottom:714.735260px;}
.y9e{bottom:714.735306px;}
.y184{bottom:716.374823px;}
.y207{bottom:716.604323px;}
.y1c6{bottom:716.770073px;}
.y14a{bottom:718.556733px;}
.y116{bottom:720.739806px;}
.y11{bottom:722.461395px;}
.yc5{bottom:723.808823px;}
.y183{bottom:731.368823px;}
.y206{bottom:731.598323px;}
.y1c5{bottom:731.764073px;}
.y4e{bottom:732.165344px;}
.y84{bottom:733.485260px;}
.y9d{bottom:733.485306px;}
.y149{bottom:733.550733px;}
.y10{bottom:741.211395px;}
.yc4{bottom:742.558823px;}
.y182{bottom:746.362823px;}
.y205{bottom:746.592323px;}
.y1c4{bottom:746.758073px;}
.y148{bottom:748.544733px;}
.y4d{bottom:750.915344px;}
.y83{bottom:752.235260px;}
.y9c{bottom:752.235306px;}
.yf{bottom:759.961395px;}
.yc3{bottom:761.308823px;}
.y181{bottom:761.356823px;}
.y204{bottom:761.586323px;}
.y1c3{bottom:761.752073px;}
.y147{bottom:763.538733px;}
.y4c{bottom:769.665344px;}
.y82{bottom:770.985260px;}
.y9b{bottom:770.985306px;}
.y180{bottom:776.350823px;}
.y203{bottom:776.580323px;}
.y1c2{bottom:776.746073px;}
.y146{bottom:778.532733px;}
.ye{bottom:778.711395px;}
.y4b{bottom:788.415344px;}
.y81{bottom:789.735260px;}
.y9a{bottom:789.735306px;}
.y17f{bottom:791.344823px;}
.y202{bottom:791.574323px;}
.y1c1{bottom:791.740073px;}
.y145{bottom:793.526733px;}
.yd{bottom:797.461395px;}
.yc2{bottom:798.808777px;}
.y17e{bottom:806.338823px;}
.y201{bottom:806.568323px;}
.y1c0{bottom:806.734073px;}
.y4a{bottom:807.165344px;}
.y80{bottom:808.485260px;}
.y99{bottom:808.485306px;}
.yc{bottom:816.211395px;}
.y17d{bottom:821.332823px;}
.y200{bottom:821.562323px;}
.y1bf{bottom:821.728073px;}
.y49{bottom:825.915344px;}
.y7f{bottom:827.235260px;}
.y98{bottom:827.235306px;}
.y17c{bottom:836.326823px;}
.y1ff{bottom:836.556323px;}
.y1be{bottom:836.722073px;}
.y48{bottom:844.665344px;}
.y7e{bottom:845.985260px;}
.y97{bottom:845.985306px;}
.y17b{bottom:851.320823px;}
.y1fe{bottom:851.550323px;}
.y1bd{bottom:851.716073px;}
.yb{bottom:860.394153px;}
.y47{bottom:863.415344px;}
.y7d{bottom:864.735260px;}
.y96{bottom:864.735306px;}
.y17a{bottom:866.314823px;}
.y1fd{bottom:866.544323px;}
.y1bc{bottom:866.710073px;}
.ya{bottom:875.388153px;}
.y179{bottom:881.308823px;}
.y1fc{bottom:881.538323px;}
.y1bb{bottom:881.704073px;}
.y46{bottom:882.165344px;}
.y7c{bottom:883.485260px;}
.y95{bottom:883.485306px;}
.y178{bottom:896.302823px;}
.y1fb{bottom:896.532323px;}
.y1ba{bottom:896.698073px;}
.y45{bottom:900.915344px;}
.y7b{bottom:902.235260px;}
.y94{bottom:902.235306px;}
.y177{bottom:911.296823px;}
.y1fa{bottom:911.526323px;}
.y1b9{bottom:911.692073px;}
.y9{bottom:917.988190px;}
.y44{bottom:919.665344px;}
.y7a{bottom:920.985260px;}
.y93{bottom:920.985306px;}
.y176{bottom:926.290823px;}
.y1f9{bottom:926.520323px;}
.y1b8{bottom:926.686073px;}
.y8{bottom:936.738190px;}
.y43{bottom:938.415344px;}
.y79{bottom:939.735260px;}
.y92{bottom:939.735306px;}
.y175{bottom:941.284823px;}
.y1f8{bottom:941.514323px;}
.y1b7{bottom:941.680073px;}
.y174{bottom:956.278823px;}
.y1f7{bottom:956.508323px;}
.y1b6{bottom:956.674073px;}
.y42{bottom:957.165344px;}
.y78{bottom:958.485260px;}
.y91{bottom:958.485306px;}
.y173{bottom:971.272823px;}
.y1f6{bottom:971.502323px;}
.y1b5{bottom:971.668073px;}
.y41{bottom:975.915344px;}
.y77{bottom:977.235260px;}
.y90{bottom:977.235306px;}
.y7{bottom:981.424622px;}
.y172{bottom:986.266823px;}
.y1f5{bottom:986.496323px;}
.y1b4{bottom:986.662073px;}
.y40{bottom:994.665344px;}
.y76{bottom:995.985260px;}
.y8f{bottom:995.985306px;}
.y171{bottom:1001.260823px;}
.y1f4{bottom:1001.490323px;}
.y1b3{bottom:1001.656073px;}
.y6{bottom:1008.424622px;}
.y3f{bottom:1013.415344px;}
.y75{bottom:1014.735260px;}
.y8e{bottom:1014.735306px;}
.y170{bottom:1016.254823px;}
.y1f3{bottom:1016.484323px;}
.y1b2{bottom:1016.650073px;}
.y16f{bottom:1031.248823px;}
.y1f2{bottom:1031.478323px;}
.y1b1{bottom:1031.644073px;}
.y3e{bottom:1032.165344px;}
.y74{bottom:1033.485260px;}
.y8d{bottom:1033.485306px;}
.y115{bottom:1039.489760px;}
.y16e{bottom:1046.242823px;}
.y1f1{bottom:1046.472323px;}
.y1b0{bottom:1046.638073px;}
.y3d{bottom:1050.915344px;}
.y73{bottom:1052.235260px;}
.y8c{bottom:1052.235306px;}
.y114{bottom:1058.239760px;}
.y16d{bottom:1061.236823px;}
.y1f0{bottom:1061.466323px;}
.y1af{bottom:1061.632073px;}
.y3c{bottom:1069.665344px;}
.y72{bottom:1070.985260px;}
.y8b{bottom:1070.985306px;}
.y5{bottom:1076.132080px;}
.y16c{bottom:1076.230823px;}
.y1ef{bottom:1076.460323px;}
.y1ae{bottom:1076.626073px;}
.y3b{bottom:1088.415344px;}
.y71{bottom:1089.735260px;}
.y8a{bottom:1089.735306px;}
.y16b{bottom:1091.224823px;}
.y1ee{bottom:1091.454323px;}
.y1ad{bottom:1091.620073px;}
.y3{bottom:1109.586556px;}
.y2{bottom:1126.582306px;}
.y70{bottom:1127.482361px;}
.y3a{bottom:1127.482544px;}
.h18{height:18.526498px;}
.h16{height:19.800000px;}
.h19{height:28.370232px;}
.h1c{height:29.005246px;}
.h1b{height:32.183226px;}
.h1e{height:32.903802px;}
.hd{height:34.307699px;}
.h15{height:40.362000px;}
.h2{height:42.048000px;}
.h8{height:43.260000px;}
.h3{height:44.676000px;}
.hc{height:49.011000px;}
.hf{height:49.113000px;}
.h17{height:49.406219px;}
.hb{height:51.912000px;}
.h10{height:52.173000px;}
.h12{height:54.707662px;}
.h4{height:54.862258px;}
.h11{height:54.878100px;}
.h5{height:55.404000px;}
.h9{height:57.660000px;}
.ha{height:57.780000px;}
.h13{height:61.380000px;}
.h14{height:64.362000px;}
.he{height:64.680000px;}
.h7{height:64.824000px;}
.h6{height:92.448000px;}
.h1a{height:225.411003px;}
.h1d{height:242.042999px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:12.015000px;}
.w3{width:357.165000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:6.437548px;}
.x1{left:76.535402px;}
.x2{left:78.746400px;}
.x11{left:83.817450px;}
.x3{left:85.181849px;}
.x23{left:89.790298px;}
.x9{left:93.545402px;}
.x1d{left:95.968958px;}
.x6{left:97.796100px;}
.x18{left:100.931248px;}
.x24{left:102.047253px;}
.x1b{left:104.132314px;}
.x19{left:106.234975px;}
.x1c{left:109.436041px;}
.x1a{left:117.375940px;}
.x13{left:151.774349px;}
.x14{left:261.919355px;}
.xa{left:267.874652px;}
.xc{left:272.420776px;}
.x12{left:330.787491px;}
.x15{left:361.885506px;}
.x17{left:374.228394px;}
.x4{left:459.215402px;}
.xb{left:472.404465px;}
.x5{left:476.210402px;}
.x1e{left:483.962723px;}
.x21{left:487.235439px;}
.x1f{left:489.385164px;}
.x22{left:492.657879px;}
.x20{left:500.775498px;}
.x10{left:641.311964px;}
.xf{left:742.715864px;}
.xd{left:753.880629px;}
.x8{left:755.489868px;}
.xe{left:756.651900px;}
.x7{left:792.153442px;}
@media print{
.v5{vertical-align:-21.349333pt;}
.v2{vertical-align:-18.133301pt;}
.v4{vertical-align:-13.333171pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.284801pt;}
.v1{vertical-align:21.333333pt;}
.ls3b{letter-spacing:-1.360000pt;}
.ls39{letter-spacing:-0.861333pt;}
.ls4c{letter-spacing:-0.426667pt;}
.ls41{letter-spacing:-0.373333pt;}
.ls6f{letter-spacing:-0.342245pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls87{letter-spacing:-0.317333pt;}
.ls88{letter-spacing:-0.272000pt;}
.ls42{letter-spacing:-0.266667pt;}
.ls68{letter-spacing:-0.223168pt;}
.ls1b{letter-spacing:-0.213333pt;}
.ls6e{letter-spacing:-0.210416pt;}
.ls6b{letter-spacing:-0.190136pt;}
.ls64{letter-spacing:-0.185973pt;}
.lsa6{letter-spacing:-0.181333pt;}
.ls1a{letter-spacing:-0.160000pt;}
.ls3a{letter-spacing:-0.136000pt;}
.ls67{letter-spacing:-0.123485pt;}
.ls6a{letter-spacing:-0.111584pt;}
.ls32{letter-spacing:-0.106667pt;}
.lsa7{letter-spacing:-0.090667pt;}
.ls69{letter-spacing:-0.074389pt;}
.ls1c{letter-spacing:-0.053333pt;}
.ls86{letter-spacing:-0.045333pt;}
.ls18{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.000033pt;}
.ls2{letter-spacing:0.000076pt;}
.ls9a{letter-spacing:0.022667pt;}
.ls30{letter-spacing:0.026667pt;}
.ls60{letter-spacing:0.042083pt;}
.ls97{letter-spacing:0.045333pt;}
.ls1e{letter-spacing:0.053333pt;}
.ls61{letter-spacing:0.076054pt;}
.ls5f{letter-spacing:0.082323pt;}
.ls75{letter-spacing:0.090667pt;}
.lsb1{letter-spacing:0.095181pt;}
.ls40{letter-spacing:0.106667pt;}
.ls62{letter-spacing:0.114082pt;}
.ls73{letter-spacing:0.133333pt;}
.ls8b{letter-spacing:0.136000pt;}
.ls63{letter-spacing:0.152109pt;}
.ls16{letter-spacing:0.158926pt;}
.ls2f{letter-spacing:0.160000pt;}
.ls91{letter-spacing:0.181333pt;}
.ls4a{letter-spacing:0.186585pt;}
.ls43{letter-spacing:0.186691pt;}
.ls45{letter-spacing:0.186743pt;}
.ls3{letter-spacing:0.213333pt;}
.ls44{letter-spacing:0.216431pt;}
.ls17{letter-spacing:0.226667pt;}
.ls5{letter-spacing:0.240000pt;}
.ls7f{letter-spacing:0.256000pt;}
.ls70{letter-spacing:0.266190pt;}
.ls6{letter-spacing:0.266667pt;}
.lsa4{letter-spacing:0.271982pt;}
.ls81{letter-spacing:0.272000pt;}
.ls74{letter-spacing:0.293333pt;}
.ls49{letter-spacing:0.294470pt;}
.ls4b{letter-spacing:0.301953pt;}
.ls59{letter-spacing:0.306688pt;}
.ls89{letter-spacing:0.317333pt;}
.ls24{letter-spacing:0.320000pt;}
.ls55{letter-spacing:0.330653pt;}
.ls71{letter-spacing:0.346667pt;}
.ls76{letter-spacing:0.362667pt;}
.ls4{letter-spacing:0.373333pt;}
.ls9f{letter-spacing:0.385333pt;}
.ls5a{letter-spacing:0.386617pt;}
.ls22{letter-spacing:0.400000pt;}
.ls7c{letter-spacing:0.408000pt;}
.ls50{letter-spacing:0.419210pt;}
.ls23{letter-spacing:0.426667pt;}
.ls54{letter-spacing:0.433105pt;}
.ls21{letter-spacing:0.453333pt;}
.ls52{letter-spacing:0.463987pt;}
.ls78{letter-spacing:0.476000pt;}
.ls11{letter-spacing:0.480000pt;}
.ls48{letter-spacing:0.485844pt;}
.ls7d{letter-spacing:0.498667pt;}
.lsb3{letter-spacing:0.521333pt;}
.ls13{letter-spacing:0.533333pt;}
.ls7a{letter-spacing:0.544000pt;}
.lsf{letter-spacing:0.560000pt;}
.ls10{letter-spacing:0.586667pt;}
.ls8f{letter-spacing:0.589333pt;}
.ls92{letter-spacing:0.602933pt;}
.ls4f{letter-spacing:0.611733pt;}
.ls51{letter-spacing:0.613333pt;}
.ls83{letter-spacing:0.634667pt;}
.lsb4{letter-spacing:0.639200pt;}
.ls8{letter-spacing:0.640000pt;}
.ls7e{letter-spacing:0.657333pt;}
.ls7b{letter-spacing:0.680000pt;}
.ls53{letter-spacing:0.683172pt;}
.lsc{letter-spacing:0.693333pt;}
.ls80{letter-spacing:0.702667pt;}
.ls47{letter-spacing:0.706636pt;}
.ls9{letter-spacing:0.720000pt;}
.ls46{letter-spacing:0.725321pt;}
.ls77{letter-spacing:0.725333pt;}
.ls14{letter-spacing:0.746667pt;}
.ls96{letter-spacing:0.770667pt;}
.ls3f{letter-spacing:0.773333pt;}
.lsae{letter-spacing:0.797867pt;}
.lsb{letter-spacing:0.800000pt;}
.ls8e{letter-spacing:0.816000pt;}
.ls5e{letter-spacing:0.826667pt;}
.ls58{letter-spacing:0.850667pt;}
.lsd{letter-spacing:0.853333pt;}
.ls9b{letter-spacing:0.861333pt;}
.ls2e{letter-spacing:0.880000pt;}
.ls12{letter-spacing:0.906667pt;}
.ls33{letter-spacing:0.933333pt;}
.ls93{letter-spacing:0.952000pt;}
.ls56{letter-spacing:0.954667pt;}
.lse{letter-spacing:0.960000pt;}
.ls3e{letter-spacing:0.986667pt;}
.lsa2{letter-spacing:0.997333pt;}
.ls82{letter-spacing:1.010933pt;}
.lsa{letter-spacing:1.013333pt;}
.ls3d{letter-spacing:1.018667pt;}
.ls5c{letter-spacing:1.024000pt;}
.ls85{letter-spacing:1.042667pt;}
.ls27{letter-spacing:1.066667pt;}
.ls2d{letter-spacing:1.120000pt;}
.ls79{letter-spacing:1.133333pt;}
.ls1f{letter-spacing:1.173333pt;}
.ls2b{letter-spacing:1.200000pt;}
.ls8d{letter-spacing:1.201333pt;}
.ls57{letter-spacing:1.209062pt;}
.lsa3{letter-spacing:1.224000pt;}
.ls1d{letter-spacing:1.226667pt;}
.ls9c{letter-spacing:1.269333pt;}
.ls15{letter-spacing:1.280000pt;}
.lsa1{letter-spacing:1.314667pt;}
.ls5b{letter-spacing:1.317327pt;}
.lsaa{letter-spacing:1.323733pt;}
.ls25{letter-spacing:1.333333pt;}
.lsa8{letter-spacing:1.382667pt;}
.ls95{letter-spacing:1.405333pt;}
.ls7{letter-spacing:1.440000pt;}
.ls4e{letter-spacing:1.493324pt;}
.ls29{letter-spacing:1.493333pt;}
.lsac{letter-spacing:1.518667pt;}
.ls72{letter-spacing:1.520000pt;}
.lsad{letter-spacing:1.541333pt;}
.ls34{letter-spacing:1.546667pt;}
.lsb2{letter-spacing:1.554933pt;}
.ls9d{letter-spacing:1.586667pt;}
.ls26{letter-spacing:1.600000pt;}
.ls37{letter-spacing:1.626667pt;}
.ls3c{letter-spacing:1.631989pt;}
.lsa0{letter-spacing:1.632000pt;}
.ls90{letter-spacing:1.650127pt;}
.ls20{letter-spacing:1.653333pt;}
.ls9e{letter-spacing:1.677333pt;}
.ls2c{letter-spacing:1.680000pt;}
.ls31{letter-spacing:1.706667pt;}
.ls36{letter-spacing:1.733333pt;}
.lsb0{letter-spacing:1.758909pt;}
.ls8a{letter-spacing:1.763467pt;}
.lsb5{letter-spacing:1.768000pt;}
.ls4d{letter-spacing:1.813333pt;}
.ls2a{letter-spacing:1.866667pt;}
.lsa9{letter-spacing:1.904000pt;}
.ls28{letter-spacing:1.920000pt;}
.ls84{letter-spacing:1.958379pt;}
.ls99{letter-spacing:1.981067pt;}
.ls5d{letter-spacing:2.100020pt;}
.ls98{letter-spacing:2.144267pt;}
.ls94{letter-spacing:2.298400pt;}
.ls35{letter-spacing:2.720000pt;}
.lsa5{letter-spacing:2.978383pt;}
.ls0{letter-spacing:3.546667pt;}
.lsaf{letter-spacing:5.349333pt;}
.ls8c{letter-spacing:5.485333pt;}
.lsab{letter-spacing:7.266933pt;}
.ls1{letter-spacing:35.635741pt;}
.ls6c{letter-spacing:293.113648pt;}
.ls65{letter-spacing:295.511627pt;}
.ls6d{letter-spacing:307.944240pt;}
.ls66{letter-spacing:310.017547pt;}
.ws7d{word-spacing:-318.423541pt;}
.ws82{word-spacing:-316.538386pt;}
.ws7c{word-spacing:-303.917621pt;}
.ws81{word-spacing:-301.707795pt;}
.ws98{word-spacing:-14.293333pt;}
.ws29{word-spacing:-14.240000pt;}
.ws28{word-spacing:-14.186667pt;}
.ws2a{word-spacing:-13.973333pt;}
.ws7a{word-spacing:-13.600000pt;}
.ws79{word-spacing:-13.333333pt;}
.wsde{word-spacing:-12.852000pt;}
.wsb5{word-spacing:-12.557333pt;}
.wsba{word-spacing:-12.194667pt;}
.wsb8{word-spacing:-12.058667pt;}
.wsb7{word-spacing:-12.013333pt;}
.wsb6{word-spacing:-11.922667pt;}
.wsdf{word-spacing:-11.877333pt;}
.wsb9{word-spacing:-11.696000pt;}
.wsb4{word-spacing:-11.650667pt;}
.ws9d{word-spacing:-11.560000pt;}
.ws55{word-spacing:-11.333333pt;}
.ws9e{word-spacing:-11.288000pt;}
.ws57{word-spacing:-11.197333pt;}
.ws54{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.wsdd{word-spacing:-11.016000pt;}
.ws56{word-spacing:-10.472000pt;}
.ws5{word-spacing:-10.240000pt;}
.ws1{word-spacing:-8.885333pt;}
.ws85{word-spacing:-8.860337pt;}
.ws84{word-spacing:-8.708229pt;}
.ws83{word-spacing:-8.670201pt;}
.ws9c{word-spacing:-8.658667pt;}
.ws80{word-spacing:-8.404011pt;}
.ws0{word-spacing:-8.362667pt;}
.ws7f{word-spacing:-8.331605pt;}
.ws7b{word-spacing:-8.220021pt;}
.ws7e{word-spacing:-8.182827pt;}
.ws7{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws69{word-spacing:-6.666667pt;}
.ws68{word-spacing:-5.666667pt;}
.wsb{word-spacing:-2.133333pt;}
.ws64{word-spacing:-1.920000pt;}
.ws49{word-spacing:-1.706667pt;}
.ws9{word-spacing:-1.680000pt;}
.wse6{word-spacing:-1.541333pt;}
.wsc{word-spacing:-1.333333pt;}
.ws2c{word-spacing:-1.280000pt;}
.wsea{word-spacing:-1.269333pt;}
.ws61{word-spacing:-1.226667pt;}
.ws45{word-spacing:-1.173333pt;}
.wsa3{word-spacing:-1.133333pt;}
.ws51{word-spacing:-1.120000pt;}
.ws50{word-spacing:-1.066667pt;}
.ws34{word-spacing:-1.013333pt;}
.ws2e{word-spacing:-0.960000pt;}
.ws3a{word-spacing:-0.906667pt;}
.wsd7{word-spacing:-0.861333pt;}
.ws19{word-spacing:-0.853333pt;}
.wsd9{word-spacing:-0.816000pt;}
.ws14{word-spacing:-0.800000pt;}
.wsd6{word-spacing:-0.770667pt;}
.ws38{word-spacing:-0.746667pt;}
.ws23{word-spacing:-0.693333pt;}
.wscf{word-spacing:-0.680000pt;}
.wse{word-spacing:-0.640000pt;}
.wsb1{word-spacing:-0.634667pt;}
.wsc0{word-spacing:-0.589333pt;}
.ws6c{word-spacing:-0.586667pt;}
.ws27{word-spacing:-0.544000pt;}
.ws21{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.506667pt;}
.wsc2{word-spacing:-0.498667pt;}
.ws1d{word-spacing:-0.480000pt;}
.wse3{word-spacing:-0.453333pt;}
.ws52{word-spacing:-0.426667pt;}
.ws3c{word-spacing:-0.373333pt;}
.wsd5{word-spacing:-0.362667pt;}
.ws3f{word-spacing:-0.320000pt;}
.wsbb{word-spacing:-0.317333pt;}
.wsac{word-spacing:-0.272000pt;}
.ws4{word-spacing:-0.266667pt;}
.wsad{word-spacing:-0.226667pt;}
.ws4c{word-spacing:-0.213333pt;}
.wsed{word-spacing:-0.181333pt;}
.ws10{word-spacing:-0.160000pt;}
.ws94{word-spacing:-0.152109pt;}
.wsc6{word-spacing:-0.136000pt;}
.ws60{word-spacing:-0.106667pt;}
.wse4{word-spacing:-0.090667pt;}
.ws6{word-spacing:-0.064000pt;}
.ws70{word-spacing:-0.053333pt;}
.wsbc{word-spacing:-0.045333pt;}
.ws8{word-spacing:0.000000pt;}
.wsc4{word-spacing:0.045333pt;}
.ws5a{word-spacing:0.053333pt;}
.wsec{word-spacing:0.090667pt;}
.ws31{word-spacing:0.106667pt;}
.ws8d{word-spacing:0.123485pt;}
.wsc8{word-spacing:0.136000pt;}
.ws1e{word-spacing:0.160000pt;}
.ws92{word-spacing:0.210416pt;}
.ws5c{word-spacing:0.213333pt;}
.wse8{word-spacing:0.226667pt;}
.ws9f{word-spacing:0.266667pt;}
.wse1{word-spacing:0.272000pt;}
.wsc5{word-spacing:0.317333pt;}
.ws43{word-spacing:0.320000pt;}
.ws93{word-spacing:0.342245pt;}
.ws1b{word-spacing:0.373333pt;}
.wsaa{word-spacing:0.408000pt;}
.ws8b{word-spacing:0.426667pt;}
.ws40{word-spacing:0.480000pt;}
.wscb{word-spacing:0.498667pt;}
.ws22{word-spacing:0.533333pt;}
.ws6f{word-spacing:0.586667pt;}
.ws97{word-spacing:0.589333pt;}
.ws16{word-spacing:0.640000pt;}
.ws3b{word-spacing:0.693333pt;}
.ws15{word-spacing:0.746667pt;}
.ws1c{word-spacing:0.800000pt;}
.ws72{word-spacing:0.853333pt;}
.ws67{word-spacing:0.861333pt;}
.ws41{word-spacing:0.906667pt;}
.ws5b{word-spacing:0.960000pt;}
.wsa8{word-spacing:0.997333pt;}
.ws71{word-spacing:1.013333pt;}
.wsc1{word-spacing:1.042667pt;}
.ws99{word-spacing:1.066667pt;}
.wsae{word-spacing:1.088000pt;}
.ws74{word-spacing:1.120000pt;}
.wsa4{word-spacing:1.133333pt;}
.ws6a{word-spacing:1.173333pt;}
.wse5{word-spacing:1.178667pt;}
.wseb{word-spacing:1.224000pt;}
.ws6d{word-spacing:1.226667pt;}
.wsbf{word-spacing:1.269333pt;}
.ws75{word-spacing:1.280000pt;}
.wsd{word-spacing:1.333333pt;}
.wsce{word-spacing:1.360000pt;}
.ws3d{word-spacing:1.386667pt;}
.wsb0{word-spacing:1.405333pt;}
.ws46{word-spacing:1.440000pt;}
.wsd1{word-spacing:1.450667pt;}
.ws17{word-spacing:1.493333pt;}
.wsc9{word-spacing:1.496000pt;}
.wsab{word-spacing:1.541333pt;}
.wsca{word-spacing:1.586667pt;}
.ws11{word-spacing:1.600000pt;}
.wsa9{word-spacing:1.632000pt;}
.ws4a{word-spacing:1.653333pt;}
.wsaf{word-spacing:1.677333pt;}
.ws47{word-spacing:1.706667pt;}
.wsee{word-spacing:1.722667pt;}
.ws37{word-spacing:1.760000pt;}
.wsdb{word-spacing:1.768000pt;}
.ws20{word-spacing:1.813333pt;}
.wsd2{word-spacing:1.858667pt;}
.ws53{word-spacing:1.866667pt;}
.ws95{word-spacing:1.904000pt;}
.ws8a{word-spacing:1.920000pt;}
.wsc3{word-spacing:1.994667pt;}
.ws13{word-spacing:2.026667pt;}
.ws5f{word-spacing:2.080000pt;}
.wsd3{word-spacing:2.085333pt;}
.ws32{word-spacing:2.133333pt;}
.wsdc{word-spacing:2.176000pt;}
.ws5d{word-spacing:2.186667pt;}
.wsa5{word-spacing:2.221333pt;}
.ws18{word-spacing:2.240000pt;}
.wscc{word-spacing:2.266667pt;}
.ws33{word-spacing:2.293333pt;}
.ws8f{word-spacing:2.312000pt;}
.ws4d{word-spacing:2.346667pt;}
.wsbe{word-spacing:2.357333pt;}
.ws65{word-spacing:2.400000pt;}
.wsd0{word-spacing:2.448000pt;}
.wsa1{word-spacing:2.453333pt;}
.wse2{word-spacing:2.493333pt;}
.ws6b{word-spacing:2.506667pt;}
.wsa2{word-spacing:2.560000pt;}
.ws1f{word-spacing:2.613333pt;}
.ws42{word-spacing:2.666667pt;}
.ws1a{word-spacing:2.720000pt;}
.wsb3{word-spacing:2.765333pt;}
.ws2d{word-spacing:2.773333pt;}
.wscd{word-spacing:2.810667pt;}
.wsa0{word-spacing:2.880000pt;}
.ws12{word-spacing:2.933333pt;}
.wsa6{word-spacing:2.946667pt;}
.ws9a{word-spacing:2.986667pt;}
.wsc7{word-spacing:3.037333pt;}
.ws39{word-spacing:3.040000pt;}
.wsd4{word-spacing:3.128000pt;}
.ws35{word-spacing:3.146667pt;}
.ws6e{word-spacing:3.200000pt;}
.wsd8{word-spacing:3.264000pt;}
.wsda{word-spacing:3.400000pt;}
.ws8c{word-spacing:3.413333pt;}
.wsb2{word-spacing:3.445333pt;}
.ws4f{word-spacing:3.466667pt;}
.ws4b{word-spacing:3.520000pt;}
.ws48{word-spacing:3.626667pt;}
.ws4e{word-spacing:3.680000pt;}
.ws63{word-spacing:3.840000pt;}
.ws44{word-spacing:3.893333pt;}
.wsa7{word-spacing:3.944000pt;}
.ws2f{word-spacing:3.946667pt;}
.ws25{word-spacing:4.000000pt;}
.ws87{word-spacing:4.106667pt;}
.wsbd{word-spacing:4.261333pt;}
.ws24{word-spacing:4.266667pt;}
.ws89{word-spacing:4.320000pt;}
.ws2b{word-spacing:4.426667pt;}
.ws66{word-spacing:4.442667pt;}
.ws73{word-spacing:4.480000pt;}
.ws76{word-spacing:4.533333pt;}
.wse9{word-spacing:4.578667pt;}
.ws5e{word-spacing:4.746667pt;}
.ws3e{word-spacing:4.800000pt;}
.wsf{word-spacing:5.066667pt;}
.ws88{word-spacing:5.173333pt;}
.wse0{word-spacing:5.213333pt;}
.ws9b{word-spacing:5.600000pt;}
.ws36{word-spacing:5.866667pt;}
.wse7{word-spacing:5.893333pt;}
.ws78{word-spacing:6.186667pt;}
.ws30{word-spacing:6.293333pt;}
.ws86{word-spacing:6.933333pt;}
.ws77{word-spacing:7.466667pt;}
.ws8e{word-spacing:7.570667pt;}
.ws62{word-spacing:7.840000pt;}
.ws90{word-spacing:9.021333pt;}
.ws96{word-spacing:9.474667pt;}
.ws91{word-spacing:11.424000pt;}
.wsef{word-spacing:12.149333pt;}
.wsf0{word-spacing:15.821333pt;}
.ws26{word-spacing:64.237333pt;}
.ws58{word-spacing:346.392000pt;}
.ws59{word-spacing:634.712000pt;}
._a{margin-left:-2630.557284pt;}
._24{margin-left:-309.980352pt;}
._27{margin-left:-307.906211pt;}
._23{margin-left:-294.879317pt;}
._26{margin-left:-292.467202pt;}
._c{margin-left:-86.133333pt;}
._7{margin-left:-14.733333pt;}
._22{margin-left:-10.986667pt;}
._20{margin-left:-8.816000pt;}
._1e{margin-left:-7.264000pt;}
._4{margin-left:-6.233333pt;}
._2a{margin-left:-5.113932pt;}
._1{margin-left:-4.109067pt;}
._5{margin-left:-2.774068pt;}
._0{margin-left:-1.450667pt;}
._2{width:0.938667pt;}
._3{width:2.372267pt;}
._6{width:3.328000pt;}
._b{width:4.666667pt;}
._1d{width:5.648000pt;}
._1f{width:8.112000pt;}
._21{width:10.826660pt;}
._29{width:11.831994pt;}
._e{width:14.057535pt;}
._8{width:16.320000pt;}
._9{width:48.552000pt;}
._14{width:64.282667pt;}
._28{width:77.556880pt;}
._15{width:84.659393pt;}
._18{width:92.026667pt;}
._25{width:95.871960pt;}
._16{width:109.616000pt;}
._1c{width:161.477333pt;}
._1b{width:220.456000pt;}
._12{width:260.757333pt;}
._11{width:283.424000pt;}
._f{width:360.218667pt;}
._1a{width:371.280000pt;}
._13{width:382.431992pt;}
._10{width:475.591992pt;}
._19{width:609.189333pt;}
._17{width:871.125311pt;}
._d{width:1416.848000pt;}
.fs8{font-size:31.733332pt;}
.fsc{font-size:37.194667pt;}
.fs6{font-size:37.333333pt;}
.fsb{font-size:37.342400pt;}
.fse{font-size:38.027199pt;}
.fsd{font-size:41.161600pt;}
.fsf{font-size:42.083200pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fsa{font-size:53.346664pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y11a{bottom:1.906262pt;}
.y128{bottom:2.856933pt;}
.y13d{bottom:2.920125pt;}
.y119{bottom:6.573568pt;}
.y4{bottom:60.930933pt;}
.y1{bottom:61.777466pt;}
.y39{bottom:100.389600pt;}
.y6f{bottom:100.813639pt;}
.ye3{bottom:101.450938pt;}
.y12f{bottom:101.603599pt;}
.ye4{bottom:101.697600pt;}
.y144{bottom:101.721467pt;}
.y105{bottom:101.986898pt;}
.y112{bottom:101.986938pt;}
.y1ac{bottom:103.657620pt;}
.yaa{bottom:106.233866pt;}
.y113{bottom:107.324262pt;}
.y2e{bottom:108.854533pt;}
.y16a{bottom:111.615060pt;}
.y12e{bottom:114.931599pt;}
.y143{bottom:115.049467pt;}
.y1ab{bottom:116.985620pt;}
.y1ed{bottom:117.336954pt;}
.y6e{bottom:117.480306pt;}
.ye2{bottom:118.117605pt;}
.y38{bottom:118.250936pt;}
.y104{bottom:118.653564pt;}
.y111{bottom:118.653605pt;}
.ya9{bottom:123.346802pt;}
.y169{bottom:124.943060pt;}
.y2d{bottom:125.521200pt;}
.y12d{bottom:128.259599pt;}
.y142{bottom:128.377467pt;}
.y1aa{bottom:130.313620pt;}
.y1ec{bottom:130.664954pt;}
.y37{bottom:133.770270pt;}
.y6d{bottom:134.146973pt;}
.ye1{bottom:134.784271pt;}
.y103{bottom:135.320231pt;}
.y110{bottom:135.320272pt;}
.ya8{bottom:135.943880pt;}
.y168{bottom:138.271060pt;}
.y12c{bottom:141.587599pt;}
.y141{bottom:141.705467pt;}
.y2c{bottom:142.187866pt;}
.y1a9{bottom:143.641620pt;}
.y1eb{bottom:143.992954pt;}
.y36{bottom:147.098270pt;}
.ya7{bottom:149.271880pt;}
.y6c{bottom:150.813639pt;}
.ye0{bottom:151.450938pt;}
.y167{bottom:151.599060pt;}
.y102{bottom:151.986898pt;}
.y10f{bottom:151.986938pt;}
.y12b{bottom:154.915599pt;}
.y140{bottom:155.033467pt;}
.y1a8{bottom:156.969620pt;}
.y1ea{bottom:157.320954pt;}
.y2b{bottom:158.854533pt;}
.ya6{bottom:162.599880pt;}
.y166{bottom:164.927060pt;}
.y35{bottom:164.959605pt;}
.y6b{bottom:167.480306pt;}
.ydf{bottom:168.117605pt;}
.y101{bottom:168.653564pt;}
.y10e{bottom:168.653605pt;}
.y1a7{bottom:170.297620pt;}
.y1e9{bottom:170.648954pt;}
.y2a{bottom:175.521200pt;}
.y165{bottom:178.255060pt;}
.ya5{bottom:179.713213pt;}
.y34{bottom:180.473595pt;}
.y1a6{bottom:183.625620pt;}
.y1e8{bottom:183.976954pt;}
.y6a{bottom:184.146973pt;}
.y100{bottom:185.320231pt;}
.y10d{bottom:185.320272pt;}
.y127{bottom:186.092000pt;}
.y13c{bottom:186.210673pt;}
.y164{bottom:191.583060pt;}
.y29{bottom:192.187866pt;}
.y12a{bottom:192.778280pt;}
.y1a5{bottom:196.953620pt;}
.y1e7{bottom:197.304954pt;}
.y33{bottom:198.334941pt;}
.y69{bottom:200.813639pt;}
.y11b{bottom:201.044942pt;}
.yde{bottom:201.450928pt;}
.y130{bottom:201.470805pt;}
.yff{bottom:201.986898pt;}
.y163{bottom:204.911060pt;}
.yb9{bottom:205.295736pt;}
.y13f{bottom:207.392924pt;}
.y28{bottom:208.854533pt;}
.y1a4{bottom:210.281620pt;}
.y1e6{bottom:210.632954pt;}
.y32{bottom:213.848941pt;}
.y11c{bottom:216.229665pt;}
.y68{bottom:217.480306pt;}
.y131{bottom:217.812994pt;}
.y162{bottom:218.239060pt;}
.yfe{bottom:218.653564pt;}
.y10c{bottom:218.653605pt;}
.yb8{bottom:221.995870pt;}
.y1a3{bottom:223.609620pt;}
.y1e5{bottom:223.960954pt;}
.y27{bottom:225.521200pt;}
.y11d{bottom:231.414388pt;}
.y161{bottom:231.567060pt;}
.y31{bottom:231.710266pt;}
.y67{bottom:234.146973pt;}
.y132{bottom:234.155182pt;}
.yfd{bottom:235.320231pt;}
.y1a2{bottom:236.937620pt;}
.y1e4{bottom:237.288954pt;}
.yb7{bottom:238.591194pt;}
.y26{bottom:242.187866pt;}
.ydd{bottom:243.385620pt;}
.y160{bottom:244.895060pt;}
.y129{bottom:245.091593pt;}
.y11e{bottom:246.599110pt;}
.y1a1{bottom:250.265620pt;}
.y133{bottom:250.497371pt;}
.y1e3{bottom:250.616954pt;}
.y66{bottom:250.813639pt;}
.y13e{bottom:250.981466pt;}
.yfc{bottom:251.986898pt;}
.y30{bottom:253.932925pt;}
.yb6{bottom:255.228527pt;}
.y15f{bottom:258.223060pt;}
.y25{bottom:258.854533pt;}
.ydc{bottom:260.052287pt;}
.y11f{bottom:261.783833pt;}
.y1a0{bottom:263.593620pt;}
.y1e2{bottom:263.944954pt;}
.y134{bottom:266.839560pt;}
.y2f{bottom:267.260925pt;}
.y65{bottom:267.480306pt;}
.yfb{bottom:268.653564pt;}
.y15e{bottom:271.551060pt;}
.yb5{bottom:271.865861pt;}
.y24{bottom:275.521200pt;}
.ydb{bottom:276.718953pt;}
.y19f{bottom:276.921620pt;}
.y120{bottom:276.968556pt;}
.y1e1{bottom:277.272954pt;}
.y135{bottom:283.181748pt;}
.y64{bottom:284.146973pt;}
.y15d{bottom:284.879060pt;}
.yfa{bottom:285.320231pt;}
.y10a{bottom:285.320272pt;}
.yb4{bottom:288.503194pt;}
.y19e{bottom:290.249620pt;}
.y1e0{bottom:290.600954pt;}
.y10b{bottom:290.657605pt;}
.y121{bottom:292.153278pt;}
.y23{bottom:292.187866pt;}
.yda{bottom:293.385620pt;}
.y15c{bottom:298.207060pt;}
.y136{bottom:299.523937pt;}
.y63{bottom:300.813639pt;}
.yf9{bottom:301.986898pt;}
.y108{bottom:301.986938pt;}
.y19d{bottom:303.577620pt;}
.y1df{bottom:303.928954pt;}
.yb3{bottom:305.140527pt;}
.y109{bottom:307.324272pt;}
.y122{bottom:307.338001pt;}
.y21{bottom:308.854533pt;}
.yd9{bottom:310.052287pt;}
.y15b{bottom:311.535060pt;}
.y137{bottom:315.866126pt;}
.y19c{bottom:316.905620pt;}
.y1de{bottom:317.256954pt;}
.y62{bottom:317.480306pt;}
.yf8{bottom:318.653564pt;}
.y107{bottom:318.653605pt;}
.yb2{bottom:321.777861pt;}
.y123{bottom:322.522724pt;}
.y15a{bottom:324.863060pt;}
.y20{bottom:325.521200pt;}
.yd8{bottom:326.718953pt;}
.y19b{bottom:330.233620pt;}
.y1dd{bottom:330.584954pt;}
.y138{bottom:332.208314pt;}
.y61{bottom:334.146973pt;}
.yf7{bottom:335.320231pt;}
.y124{bottom:337.707446pt;}
.y159{bottom:338.191060pt;}
.yb1{bottom:338.415194pt;}
.y106{bottom:340.657605pt;}
.y1f{bottom:342.187866pt;}
.yd7{bottom:343.385620pt;}
.y19a{bottom:343.561620pt;}
.y1dc{bottom:343.912954pt;}
.y139{bottom:348.550503pt;}
.y60{bottom:350.813639pt;}
.yf6{bottom:351.986898pt;}
.y125{bottom:352.892169pt;}
.yb0{bottom:355.052527pt;}
.y199{bottom:356.889620pt;}
.y1db{bottom:357.240954pt;}
.y1e{bottom:358.854533pt;}
.yd6{bottom:360.052287pt;}
.y13a{bottom:364.892692pt;}
.y5f{bottom:367.480306pt;}
.y126{bottom:368.076892pt;}
.y158{bottom:368.191081pt;}
.yf5{bottom:368.653564pt;}
.yc1{bottom:368.653605pt;}
.y198{bottom:370.217620pt;}
.y1da{bottom:370.568954pt;}
.yaf{bottom:371.689861pt;}
.y1d{bottom:375.521200pt;}
.yd5{bottom:376.718953pt;}
.y13b{bottom:381.234880pt;}
.y197{bottom:383.545620pt;}
.y1d9{bottom:383.896954pt;}
.y5e{bottom:384.146973pt;}
.yf4{bottom:385.320231pt;}
.yc0{bottom:385.320272pt;}
.yae{bottom:388.327194pt;}
.y1c{bottom:392.187866pt;}
.yd4{bottom:393.385620pt;}
.y196{bottom:396.873620pt;}
.y1d8{bottom:397.224954pt;}
.y5d{bottom:400.813639pt;}
.yf3{bottom:401.986898pt;}
.ybf{bottom:401.986938pt;}
.yad{bottom:404.964527pt;}
.y1b{bottom:408.854533pt;}
.yd3{bottom:410.052287pt;}
.y195{bottom:410.201620pt;}
.y1d7{bottom:410.552954pt;}
.y5c{bottom:417.480306pt;}
.yf2{bottom:418.653564pt;}
.ybe{bottom:418.653605pt;}
.y194{bottom:423.529620pt;}
.y1d6{bottom:423.880954pt;}
.y1a{bottom:425.521200pt;}
.yd2{bottom:426.718953pt;}
.yac{bottom:429.920527pt;}
.ya4{bottom:430.145880pt;}
.y157{bottom:432.178430pt;}
.y5b{bottom:434.146973pt;}
.yf1{bottom:435.320231pt;}
.ybd{bottom:435.320272pt;}
.y193{bottom:436.857620pt;}
.y1d5{bottom:437.208954pt;}
.y19{bottom:442.187866pt;}
.yd1{bottom:443.385620pt;}
.ya3{bottom:443.473880pt;}
.y156{bottom:445.506430pt;}
.y192{bottom:450.185620pt;}
.y1d4{bottom:450.536954pt;}
.y5a{bottom:450.813639pt;}
.yab{bottom:451.623861pt;}
.yf0{bottom:451.986898pt;}
.ybc{bottom:451.986938pt;}
.ya2{bottom:456.801880pt;}
.y155{bottom:458.834430pt;}
.y18{bottom:458.854533pt;}
.yd0{bottom:460.052287pt;}
.y191{bottom:463.513620pt;}
.y1d3{bottom:463.864954pt;}
.y59{bottom:467.480306pt;}
.yef{bottom:468.653564pt;}
.ybb{bottom:468.653605pt;}
.y154{bottom:472.162430pt;}
.y17{bottom:475.521200pt;}
.ycf{bottom:476.718953pt;}
.y190{bottom:476.841620pt;}
.y1d2{bottom:477.192954pt;}
.y58{bottom:484.146973pt;}
.yee{bottom:485.320231pt;}
.yba{bottom:485.320272pt;}
.y153{bottom:485.490430pt;}
.y18f{bottom:490.169620pt;}
.y1d1{bottom:490.520954pt;}
.y16{bottom:492.187866pt;}
.yce{bottom:493.385620pt;}
.y152{bottom:498.818430pt;}
.y57{bottom:500.813639pt;}
.yed{bottom:501.986898pt;}
.y89{bottom:501.986938pt;}
.y18e{bottom:503.497620pt;}
.y1d0{bottom:503.848954pt;}
.y22{bottom:508.854533pt;}
.ycd{bottom:510.052287pt;}
.y118{bottom:512.077352pt;}
.y20f{bottom:516.270287pt;}
.y18d{bottom:516.825620pt;}
.y1cf{bottom:517.176954pt;}
.y56{bottom:517.480306pt;}
.yec{bottom:518.653564pt;}
.y88{bottom:518.653605pt;}
.y15{bottom:525.521200pt;}
.ycc{bottom:526.718953pt;}
.y151{bottom:528.783763pt;}
.y20e{bottom:529.598287pt;}
.y18c{bottom:530.153620pt;}
.y1ce{bottom:530.504954pt;}
.y55{bottom:534.146973pt;}
.yeb{bottom:535.320231pt;}
.y87{bottom:535.320272pt;}
.y150{bottom:542.111763pt;}
.ycb{bottom:543.385620pt;}
.y18b{bottom:543.481620pt;}
.y1cd{bottom:543.832954pt;}
.y54{bottom:550.813639pt;}
.yea{bottom:551.986898pt;}
.ya1{bottom:551.986938pt;}
.y14f{bottom:555.439763pt;}
.y18a{bottom:556.809620pt;}
.y20d{bottom:557.013620pt;}
.y1cc{bottom:557.160954pt;}
.yca{bottom:560.052287pt;}
.y53{bottom:567.480306pt;}
.ye9{bottom:568.653564pt;}
.y86{bottom:568.653605pt;}
.y14e{bottom:568.767763pt;}
.y189{bottom:570.137620pt;}
.y20c{bottom:570.341620pt;}
.y1cb{bottom:570.488954pt;}
.y14{bottom:575.521240pt;}
.yc9{bottom:576.718953pt;}
.y14d{bottom:582.095763pt;}
.y188{bottom:583.465620pt;}
.y20b{bottom:583.669620pt;}
.y1ca{bottom:583.816954pt;}
.y52{bottom:584.146973pt;}
.ye8{bottom:585.320231pt;}
.ya0{bottom:585.320272pt;}
.yc8{bottom:593.385620pt;}
.y14c{bottom:595.423763pt;}
.y187{bottom:596.793620pt;}
.y20a{bottom:596.997620pt;}
.y1c9{bottom:597.144954pt;}
.y51{bottom:600.813639pt;}
.ye7{bottom:601.986898pt;}
.y85{bottom:601.986938pt;}
.y14b{bottom:608.751763pt;}
.y13{bottom:608.854574pt;}
.yc7{bottom:610.052287pt;}
.y186{bottom:610.121620pt;}
.y209{bottom:610.325620pt;}
.y1c8{bottom:610.472954pt;}
.y50{bottom:617.480306pt;}
.ye6{bottom:618.653564pt;}
.y9f{bottom:618.653605pt;}
.y185{bottom:623.449620pt;}
.y208{bottom:623.653620pt;}
.y1c7{bottom:623.800954pt;}
.y117{bottom:623.990938pt;}
.y12{bottom:625.521240pt;}
.yc6{bottom:626.718953pt;}
.y4f{bottom:634.146973pt;}
.ye5{bottom:635.320231pt;}
.y9e{bottom:635.320272pt;}
.y184{bottom:636.777620pt;}
.y207{bottom:636.981620pt;}
.y1c6{bottom:637.128954pt;}
.y14a{bottom:638.717096pt;}
.y116{bottom:640.657605pt;}
.y11{bottom:642.187907pt;}
.yc5{bottom:643.385620pt;}
.y183{bottom:650.105620pt;}
.y206{bottom:650.309620pt;}
.y1c5{bottom:650.456954pt;}
.y4e{bottom:650.813639pt;}
.y84{bottom:651.986898pt;}
.y9d{bottom:651.986938pt;}
.y149{bottom:652.045096pt;}
.y10{bottom:658.854574pt;}
.yc4{bottom:660.052287pt;}
.y182{bottom:663.433620pt;}
.y205{bottom:663.637620pt;}
.y1c4{bottom:663.784954pt;}
.y148{bottom:665.373096pt;}
.y4d{bottom:667.480306pt;}
.y83{bottom:668.653564pt;}
.y9c{bottom:668.653605pt;}
.yf{bottom:675.521240pt;}
.yc3{bottom:676.718953pt;}
.y181{bottom:676.761620pt;}
.y204{bottom:676.965620pt;}
.y1c3{bottom:677.112954pt;}
.y147{bottom:678.701096pt;}
.y4c{bottom:684.146973pt;}
.y82{bottom:685.320231pt;}
.y9b{bottom:685.320272pt;}
.y180{bottom:690.089620pt;}
.y203{bottom:690.293620pt;}
.y1c2{bottom:690.440954pt;}
.y146{bottom:692.029096pt;}
.ye{bottom:692.187907pt;}
.y4b{bottom:700.813639pt;}
.y81{bottom:701.986898pt;}
.y9a{bottom:701.986938pt;}
.y17f{bottom:703.417620pt;}
.y202{bottom:703.621620pt;}
.y1c1{bottom:703.768954pt;}
.y145{bottom:705.357096pt;}
.yd{bottom:708.854574pt;}
.yc2{bottom:710.052246pt;}
.y17e{bottom:716.745620pt;}
.y201{bottom:716.949620pt;}
.y1c0{bottom:717.096954pt;}
.y4a{bottom:717.480306pt;}
.y80{bottom:718.653564pt;}
.y99{bottom:718.653605pt;}
.yc{bottom:725.521240pt;}
.y17d{bottom:730.073620pt;}
.y200{bottom:730.277620pt;}
.y1bf{bottom:730.424954pt;}
.y49{bottom:734.146973pt;}
.y7f{bottom:735.320231pt;}
.y98{bottom:735.320272pt;}
.y17c{bottom:743.401620pt;}
.y1ff{bottom:743.605620pt;}
.y1be{bottom:743.752954pt;}
.y48{bottom:750.813639pt;}
.y7e{bottom:751.986898pt;}
.y97{bottom:751.986938pt;}
.y17b{bottom:756.729620pt;}
.y1fe{bottom:756.933620pt;}
.y1bd{bottom:757.080954pt;}
.yb{bottom:764.794803pt;}
.y47{bottom:767.480306pt;}
.y7d{bottom:768.653564pt;}
.y96{bottom:768.653605pt;}
.y17a{bottom:770.057620pt;}
.y1fd{bottom:770.261620pt;}
.y1bc{bottom:770.408954pt;}
.ya{bottom:778.122803pt;}
.y179{bottom:783.385620pt;}
.y1fc{bottom:783.589620pt;}
.y1bb{bottom:783.736954pt;}
.y46{bottom:784.146973pt;}
.y7c{bottom:785.320231pt;}
.y95{bottom:785.320272pt;}
.y178{bottom:796.713620pt;}
.y1fb{bottom:796.917620pt;}
.y1ba{bottom:797.064954pt;}
.y45{bottom:800.813639pt;}
.y7b{bottom:801.986898pt;}
.y94{bottom:801.986938pt;}
.y177{bottom:810.041620pt;}
.y1fa{bottom:810.245620pt;}
.y1b9{bottom:810.392954pt;}
.y9{bottom:815.989502pt;}
.y44{bottom:817.480306pt;}
.y7a{bottom:818.653564pt;}
.y93{bottom:818.653605pt;}
.y176{bottom:823.369620pt;}
.y1f9{bottom:823.573620pt;}
.y1b8{bottom:823.720954pt;}
.y8{bottom:832.656169pt;}
.y43{bottom:834.146973pt;}
.y79{bottom:835.320231pt;}
.y92{bottom:835.320272pt;}
.y175{bottom:836.697620pt;}
.y1f8{bottom:836.901620pt;}
.y1b7{bottom:837.048954pt;}
.y174{bottom:850.025620pt;}
.y1f7{bottom:850.229620pt;}
.y1b6{bottom:850.376954pt;}
.y42{bottom:850.813639pt;}
.y78{bottom:851.986898pt;}
.y91{bottom:851.986938pt;}
.y173{bottom:863.353620pt;}
.y1f6{bottom:863.557620pt;}
.y1b5{bottom:863.704954pt;}
.y41{bottom:867.480306pt;}
.y77{bottom:868.653564pt;}
.y90{bottom:868.653605pt;}
.y7{bottom:872.377441pt;}
.y172{bottom:876.681620pt;}
.y1f5{bottom:876.885620pt;}
.y1b4{bottom:877.032954pt;}
.y40{bottom:884.146973pt;}
.y76{bottom:885.320231pt;}
.y8f{bottom:885.320272pt;}
.y171{bottom:890.009620pt;}
.y1f4{bottom:890.213620pt;}
.y1b3{bottom:890.360954pt;}
.y6{bottom:896.377441pt;}
.y3f{bottom:900.813639pt;}
.y75{bottom:901.986898pt;}
.y8e{bottom:901.986938pt;}
.y170{bottom:903.337620pt;}
.y1f3{bottom:903.541620pt;}
.y1b2{bottom:903.688954pt;}
.y16f{bottom:916.665620pt;}
.y1f2{bottom:916.869620pt;}
.y1b1{bottom:917.016954pt;}
.y3e{bottom:917.480306pt;}
.y74{bottom:918.653564pt;}
.y8d{bottom:918.653605pt;}
.y115{bottom:923.990898pt;}
.y16e{bottom:929.993620pt;}
.y1f1{bottom:930.197620pt;}
.y1b0{bottom:930.344954pt;}
.y3d{bottom:934.146973pt;}
.y73{bottom:935.320231pt;}
.y8c{bottom:935.320272pt;}
.y114{bottom:940.657564pt;}
.y16d{bottom:943.321620pt;}
.y1f0{bottom:943.525620pt;}
.y1af{bottom:943.672954pt;}
.y3c{bottom:950.813639pt;}
.y72{bottom:951.986898pt;}
.y8b{bottom:951.986938pt;}
.y5{bottom:956.561849pt;}
.y16c{bottom:956.649620pt;}
.y1ef{bottom:956.853620pt;}
.y1ae{bottom:957.000954pt;}
.y3b{bottom:967.480306pt;}
.y71{bottom:968.653564pt;}
.y8a{bottom:968.653605pt;}
.y16b{bottom:969.977620pt;}
.y1ee{bottom:970.181620pt;}
.y1ad{bottom:970.328954pt;}
.y3{bottom:986.299161pt;}
.y2{bottom:1001.406494pt;}
.y70{bottom:1002.206543pt;}
.y3a{bottom:1002.206706pt;}
.h18{height:16.467998pt;}
.h16{height:17.600000pt;}
.h19{height:25.217984pt;}
.h1c{height:25.782441pt;}
.h1b{height:28.607312pt;}
.h1e{height:29.247824pt;}
.hd{height:30.495732pt;}
.h15{height:35.877333pt;}
.h2{height:37.376000pt;}
.h8{height:38.453333pt;}
.h3{height:39.712000pt;}
.hc{height:43.565333pt;}
.hf{height:43.656000pt;}
.h17{height:43.916639pt;}
.hb{height:46.144000pt;}
.h10{height:46.376000pt;}
.h12{height:48.629033pt;}
.h4{height:48.766452pt;}
.h11{height:48.780533pt;}
.h5{height:49.248000pt;}
.h9{height:51.253333pt;}
.ha{height:51.360000pt;}
.h13{height:54.560000pt;}
.h14{height:57.210667pt;}
.he{height:57.493333pt;}
.h7{height:57.621333pt;}
.h6{height:82.176000pt;}
.h1a{height:200.365336pt;}
.h1d{height:215.149333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:10.680000pt;}
.w3{width:317.480000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:5.722265pt;}
.x1{left:68.031469pt;}
.x2{left:69.996800pt;}
.x11{left:74.504400pt;}
.x3{left:75.717199pt;}
.x23{left:79.813599pt;}
.x9{left:83.151469pt;}
.x1d{left:85.305740pt;}
.x6{left:86.929867pt;}
.x18{left:89.716665pt;}
.x24{left:90.708669pt;}
.x1b{left:92.562057pt;}
.x19{left:94.431089pt;}
.x1c{left:97.276481pt;}
.x1a{left:104.334169pt;}
.x13{left:134.910533pt;}
.x14{left:232.817205pt;}
.xa{left:238.110802pt;}
.xc{left:242.151801pt;}
.x12{left:294.033325pt;}
.x15{left:321.676005pt;}
.x17{left:332.647461pt;}
.x4{left:408.191469pt;}
.xb{left:419.915080pt;}
.x5{left:423.298135pt;}
.x1e{left:430.189087pt;}
.x21{left:433.098168pt;}
.x1f{left:435.009034pt;}
.x22{left:437.918115pt;}
.x20{left:445.133776pt;}
.x10{left:570.055079pt;}
.xf{left:660.191879pt;}
.xd{left:670.116114pt;}
.x8{left:671.546549pt;}
.xe{left:672.579467pt;}
.x7{left:704.136393pt;}
}




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