
    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_53aa0fb05c78ebea182a618f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912109;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_71e2226b03415d6aa94a874f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.804000;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_36c62182bff9a49061431729.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5fac92e4547f6a1658dd5961.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_84fd1ccf898f72ee805cafd5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0add231f79263a9252057cbf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_42b3c24a9397329e16c0bb6b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912109;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_4af6c86a68bb3307f01b37a3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bac6f490c282d9fb7570d3c2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bac6f490c282d9fb7570d3c2.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6a7996b3e57952b7c30dd830.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_106a4466b31e3573d2ade31f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.877000;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_eb8f367a23e3a724220a332b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.957000;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_5bb75efbe87942cc4bb9d0b5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.907000;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_77ac9816f04dbf7b649ba224.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_eb8f367a23e3a724220a332b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.957000;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_eb8f367a23e3a724220a332b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.957000;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_eb8f367a23e3a724220a332b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.957000;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_eb8f367a23e3a724220a332b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.957000;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);}
.m3{transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-ms-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-webkit-transform:matrix(0.244161,0.000000,-0.053715,0.244161,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);}
.vf{vertical-align:-47.220000px;}
.v13{vertical-align:-38.070000px;}
.ve{vertical-align:-31.500000px;}
.v10{vertical-align:-28.125000px;}
.v2{vertical-align:-21.600000px;}
.v12{vertical-align:-19.800000px;}
.v4{vertical-align:-18.000000px;}
.va{vertical-align:-16.200000px;}
.vb{vertical-align:-14.400000px;}
.v11{vertical-align:-9.900000px;}
.v6{vertical-align:-8.100000px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:10.312200px;}
.v7{vertical-align:14.400000px;}
.v8{vertical-align:16.200000px;}
.v3{vertical-align:18.000000px;}
.v5{vertical-align:19.800000px;}
.v1{vertical-align:21.600000px;}
.v16{vertical-align:24.300000px;}
.v15{vertical-align:28.305000px;}
.v9{vertical-align:37.800000px;}
.vc{vertical-align:47.220000px;}
.vd{vertical-align:85.440000px;}
.ls4{letter-spacing:-18.021312px;}
.ls3{letter-spacing:-6.757992px;}
.ls6c{letter-spacing:-2.220000px;}
.ls15{letter-spacing:-1.998000px;}
.lsa{letter-spacing:-1.080000px;}
.ls75{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.726000px;}
.ls77{letter-spacing:-0.660000px;}
.ls17{letter-spacing:-0.594000px;}
.ls1b{letter-spacing:-0.528000px;}
.ls1a{letter-spacing:-0.462000px;}
.ls6b{letter-spacing:-0.415800px;}
.ls10{letter-spacing:-0.396000px;}
.ls5{letter-spacing:-0.378000px;}
.ls6{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.330000px;}
.ls35{letter-spacing:-0.315000px;}
.ls12{letter-spacing:-0.264000px;}
.ls7{letter-spacing:-0.240000px;}
.ls19{letter-spacing:-0.198000px;}
.ls9{letter-spacing:-0.180000px;}
.ls18{letter-spacing:-0.132000px;}
.lsd{letter-spacing:-0.120000px;}
.lsb{letter-spacing:-0.108000px;}
.ls50{letter-spacing:-0.092400px;}
.ls53{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084000px;}
.ls16{letter-spacing:-0.066000px;}
.ls8{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.000600px;}
.ls4e{letter-spacing:0.003000px;}
.ls2b{letter-spacing:0.006600px;}
.ls0{letter-spacing:0.007200px;}
.ls14{letter-spacing:0.007800px;}
.ls13{letter-spacing:0.008400px;}
.ls74{letter-spacing:0.009000px;}
.ls3b{letter-spacing:0.009600px;}
.ls2c{letter-spacing:0.010200px;}
.ls2e{letter-spacing:0.010800px;}
.ls2a{letter-spacing:0.011400px;}
.ls45{letter-spacing:0.045000px;}
.ls72{letter-spacing:0.093600px;}
.ls37{letter-spacing:0.097800px;}
.ls32{letter-spacing:0.120000px;}
.ls3c{letter-spacing:0.300000px;}
.ls70{letter-spacing:0.508200px;}
.ls76{letter-spacing:0.925800px;}
.ls78{letter-spacing:1.065000px;}
.ls6e{letter-spacing:1.098000px;}
.ls1c{letter-spacing:1.098600px;}
.ls73{letter-spacing:1.386600px;}
.ls6d{letter-spacing:2.179200px;}
.ls1{letter-spacing:2.508000px;}
.ls71{letter-spacing:2.620800px;}
.ls6f{letter-spacing:3.634800px;}
.ls11{letter-spacing:4.223400px;}
.ls39{letter-spacing:6.720000px;}
.ls42{letter-spacing:6.960000px;}
.ls24{letter-spacing:13.560000px;}
.ls1d{letter-spacing:15.000000px;}
.ls4c{letter-spacing:33.840000px;}
.ls49{letter-spacing:48.780000px;}
.ls64{letter-spacing:50.040000px;}
.ls60{letter-spacing:50.340000px;}
.ls62{letter-spacing:51.000000px;}
.ls63{letter-spacing:53.280000px;}
.ls61{letter-spacing:55.140000px;}
.ls57{letter-spacing:56.581491px;}
.ls5a{letter-spacing:56.700000px;}
.ls48{letter-spacing:58.740000px;}
.ls3e{letter-spacing:60.600000px;}
.ls47{letter-spacing:63.540000px;}
.ls55{letter-spacing:65.100000px;}
.ls3a{letter-spacing:65.685000px;}
.ls22{letter-spacing:68.100000px;}
.ls30{letter-spacing:72.960000px;}
.ls25{letter-spacing:73.200000px;}
.ls52{letter-spacing:79.140000px;}
.ls4b{letter-spacing:83.475000px;}
.ls54{letter-spacing:87.885000px;}
.ls31{letter-spacing:88.200000px;}
.ls69{letter-spacing:91.890000px;}
.ls20{letter-spacing:91.920000px;}
.ls66{letter-spacing:97.740000px;}
.ls33{letter-spacing:98.865000px;}
.ls68{letter-spacing:101.640000px;}
.ls26{letter-spacing:101.700000px;}
.ls5c{letter-spacing:118.560000px;}
.ls34{letter-spacing:118.620000px;}
.ls1f{letter-spacing:121.020000px;}
.ls21{letter-spacing:124.560000px;}
.ls44{letter-spacing:146.160000px;}
.ls5d{letter-spacing:152.340000px;}
.ls40{letter-spacing:152.640000px;}
.ls67{letter-spacing:165.360000px;}
.ls5e{letter-spacing:176.700000px;}
.ls1e{letter-spacing:180.060000px;}
.ls46{letter-spacing:186.390000px;}
.ls3f{letter-spacing:187.740000px;}
.ls56{letter-spacing:214.200000px;}
.ls59{letter-spacing:226.680000px;}
.ls36{letter-spacing:239.640000px;}
.ls5f{letter-spacing:243.420000px;}
.ls5b{letter-spacing:247.200000px;}
.ls41{letter-spacing:253.800000px;}
.ls3d{letter-spacing:266.700000px;}
.ls38{letter-spacing:323.190000px;}
.ls65{letter-spacing:337.320000px;}
.ls51{letter-spacing:366.420000px;}
.ls27{letter-spacing:372.465000px;}
.ls23{letter-spacing:609.255000px;}
.ls29{letter-spacing:611.460000px;}
.ls6a{letter-spacing:908.640000px;}
.ls2f{letter-spacing:1323.540000px;}
.ls4f{letter-spacing:1344.892200px;}
.ls28{letter-spacing:1483.860000px;}
.ls43{letter-spacing:1499.820000px;}
.ls58{letter-spacing:1518.540000px;}
.ls4d{letter-spacing:1792.875000px;}
.ls4a{letter-spacing:1849.320000px;}
.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;}
}
.wsab{word-spacing:-1849.320000px;}
.wscc{word-spacing:-1518.540000px;}
.wsa6{word-spacing:-1499.820000px;}
.ws94{word-spacing:-1323.540000px;}
.wsd3{word-spacing:-908.640000px;}
.wsb0{word-spacing:-366.480000px;}
.wsbf{word-spacing:-337.380000px;}
.wsa2{word-spacing:-266.700000px;}
.ws9c{word-spacing:-253.860000px;}
.wsb9{word-spacing:-247.260000px;}
.wsbb{word-spacing:-243.480000px;}
.ws85{word-spacing:-239.700000px;}
.wsb7{word-spacing:-226.740000px;}
.wsb5{word-spacing:-214.260000px;}
.wsa4{word-spacing:-187.740000px;}
.wsa8{word-spacing:-186.390000px;}
.wsc3{word-spacing:-176.760000px;}
.wsce{word-spacing:-176.700000px;}
.wsc5{word-spacing:-165.420000px;}
.wsa5{word-spacing:-152.640000px;}
.wsba{word-spacing:-152.400000px;}
.ws98{word-spacing:-118.620000px;}
.ws93{word-spacing:-101.700000px;}
.wsd1{word-spacing:-101.640000px;}
.ws97{word-spacing:-98.865000px;}
.wsc4{word-spacing:-97.800000px;}
.ws9e{word-spacing:-94.380000px;}
.wsc7{word-spacing:-91.935000px;}
.ws96{word-spacing:-88.200000px;}
.wsb3{word-spacing:-87.930000px;}
.ws84{word-spacing:-86.580000px;}
.wsac{word-spacing:-83.475000px;}
.wscb{word-spacing:-79.140000px;}
.ws95{word-spacing:-72.960000px;}
.wsea{word-spacing:-72.000000px;}
.ws86{word-spacing:-66.000000px;}
.ws61{word-spacing:-60.948000px;}
.wsa3{word-spacing:-60.600000px;}
.wsa9{word-spacing:-58.740000px;}
.wsb8{word-spacing:-56.760000px;}
.wscf{word-spacing:-50.340000px;}
.wsd0{word-spacing:-50.040000px;}
.wsaa{word-spacing:-48.780000px;}
.ws0{word-spacing:-44.892402px;}
.wsb4{word-spacing:-42.780000px;}
.wsad{word-spacing:-33.840000px;}
.ws1{word-spacing:-28.158300px;}
.ws115{word-spacing:-21.000000px;}
.wsc8{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.894980px;}
.ws1e{word-spacing:-16.500000px;}
.wsf4{word-spacing:-16.368000px;}
.ws11c{word-spacing:-16.302000px;}
.ws123{word-spacing:-16.038000px;}
.wsd5{word-spacing:-15.906000px;}
.wsb6{word-spacing:-15.543015px;}
.ws3{word-spacing:-15.012000px;}
.ws5{word-spacing:-15.000000px;}
.ws1d{word-spacing:-13.932000px;}
.ws4{word-spacing:-13.500000px;}
.wsc9{word-spacing:-12.600000px;}
.ws54{word-spacing:-12.000000px;}
.ws1f{word-spacing:-11.550000px;}
.wsaf{word-spacing:-11.457600px;}
.wsd6{word-spacing:-11.134200px;}
.ws6{word-spacing:-10.500000px;}
.ws51{word-spacing:-9.450000px;}
.ws53{word-spacing:-8.400000px;}
.ws60{word-spacing:-6.750000px;}
.ws9{word-spacing:-3.960000px;}
.ws25{word-spacing:-3.300000px;}
.wsd4{word-spacing:-3.234000px;}
.ws4a{word-spacing:-3.168000px;}
.wsf6{word-spacing:-3.102000px;}
.ws3b{word-spacing:-3.036000px;}
.wsa{word-spacing:-3.024000px;}
.wsc{word-spacing:-3.000000px;}
.ws8c{word-spacing:-2.970000px;}
.ws88{word-spacing:-2.904000px;}
.ws34{word-spacing:-2.772000px;}
.ws2d{word-spacing:-2.640000px;}
.ws18{word-spacing:-2.520000px;}
.ws91{word-spacing:-2.508000px;}
.wsec{word-spacing:-2.376000px;}
.ws46{word-spacing:-2.310000px;}
.wsef{word-spacing:-2.244000px;}
.ws4e{word-spacing:-2.178000px;}
.ws6f{word-spacing:-2.112000px;}
.ws10d{word-spacing:-2.046000px;}
.ws1c{word-spacing:-2.040000px;}
.ws90{word-spacing:-1.980000px;}
.wse7{word-spacing:-1.944000px;}
.ws28{word-spacing:-1.848000px;}
.ws3d{word-spacing:-1.782000px;}
.ws38{word-spacing:-1.716000px;}
.ws6b{word-spacing:-1.650000px;}
.wsfb{word-spacing:-1.620000px;}
.ws3a{word-spacing:-1.584000px;}
.ws6c{word-spacing:-1.518000px;}
.wsf9{word-spacing:-1.452000px;}
.ws48{word-spacing:-1.386000px;}
.ws108{word-spacing:-1.320000px;}
.ws3c{word-spacing:-1.254000px;}
.ws23{word-spacing:-1.140000px;}
.ws3f{word-spacing:-1.122000px;}
.ws4b{word-spacing:-1.056000px;}
.ws43{word-spacing:-0.990000px;}
.ws26{word-spacing:-0.924000px;}
.ws92{word-spacing:-0.858000px;}
.ws8f{word-spacing:-0.792000px;}
.wsf0{word-spacing:-0.726000px;}
.wseb{word-spacing:-0.660000px;}
.ws89{word-spacing:-0.594000px;}
.ws8e{word-spacing:-0.528000px;}
.ws11a{word-spacing:-0.462000px;}
.ws112{word-spacing:-0.396000px;}
.ws11{word-spacing:-0.360000px;}
.ws10b{word-spacing:-0.330000px;}
.wsed{word-spacing:-0.264000px;}
.ws3e{word-spacing:-0.198000px;}
.ws47{word-spacing:-0.132000px;}
.ws13{word-spacing:-0.120000px;}
.ws105{word-spacing:-0.108000px;}
.wse4{word-spacing:-0.066000px;}
.wsa7{word-spacing:-0.045000px;}
.ws7{word-spacing:0.000000px;}
.ws12{word-spacing:0.060000px;}
.ws6a{word-spacing:0.066000px;}
.ws21{word-spacing:0.084000px;}
.wsd2{word-spacing:0.090000px;}
.ws20{word-spacing:0.108000px;}
.ws10{word-spacing:0.120000px;}
.ws6e{word-spacing:0.132000px;}
.ws15{word-spacing:0.180000px;}
.ws70{word-spacing:0.198000px;}
.wse{word-spacing:0.240000px;}
.ws10a{word-spacing:0.264000px;}
.ws99{word-spacing:0.315000px;}
.wsdf{word-spacing:0.330000px;}
.wsb{word-spacing:0.360000px;}
.wsdd{word-spacing:0.378000px;}
.ws79{word-spacing:0.396000px;}
.wsd7{word-spacing:0.415800px;}
.ws45{word-spacing:0.462000px;}
.ws77{word-spacing:0.528000px;}
.ws107{word-spacing:0.594000px;}
.ws35{word-spacing:0.660000px;}
.wsca{word-spacing:0.726000px;}
.ws14{word-spacing:0.780000px;}
.ws2c{word-spacing:0.792000px;}
.ws4c{word-spacing:0.858000px;}
.wsdb{word-spacing:0.918000px;}
.ws8b{word-spacing:0.924000px;}
.ws11b{word-spacing:1.056000px;}
.wsde{word-spacing:1.080000px;}
.wsfa{word-spacing:1.122000px;}
.ws1a{word-spacing:1.140000px;}
.ws65{word-spacing:1.188000px;}
.wse3{word-spacing:1.254000px;}
.wsae{word-spacing:1.320000px;}
.ws33{word-spacing:1.452000px;}
.wse8{word-spacing:1.512000px;}
.wsf7{word-spacing:1.518000px;}
.ws8d{word-spacing:1.584000px;}
.ws2b{word-spacing:1.650000px;}
.wscd{word-spacing:1.716000px;}
.ws27{word-spacing:1.848000px;}
.wsd8{word-spacing:1.890000px;}
.wsf8{word-spacing:1.914000px;}
.ws30{word-spacing:1.980000px;}
.ws5f{word-spacing:1.998000px;}
.wsda{word-spacing:2.046000px;}
.wse0{word-spacing:2.106000px;}
.ws44{word-spacing:2.112000px;}
.ws22{word-spacing:2.160000px;}
.ws49{word-spacing:2.178000px;}
.wsd9{word-spacing:2.220000px;}
.ws29{word-spacing:2.244000px;}
.ws2e{word-spacing:2.310000px;}
.ws9b{word-spacing:2.376000px;}
.ws78{word-spacing:2.442000px;}
.wsf1{word-spacing:2.508000px;}
.wsd{word-spacing:2.520000px;}
.wse9{word-spacing:2.538000px;}
.wse2{word-spacing:2.574000px;}
.ws67{word-spacing:2.640000px;}
.wsf5{word-spacing:2.706000px;}
.wsf3{word-spacing:2.754000px;}
.ws4d{word-spacing:2.838000px;}
.wsfc{word-spacing:2.862000px;}
.ws68{word-spacing:2.904000px;}
.ws37{word-spacing:2.970000px;}
.ws2a{word-spacing:3.036000px;}
.wse6{word-spacing:3.102000px;}
.ws16{word-spacing:3.120000px;}
.ws31{word-spacing:3.168000px;}
.ws104{word-spacing:3.186000px;}
.ws19{word-spacing:3.240000px;}
.ws75{word-spacing:3.300000px;}
.ws36{word-spacing:3.366000px;}
.ws11f{word-spacing:3.432000px;}
.ws69{word-spacing:3.498000px;}
.ws17{word-spacing:3.540000px;}
.ws2f{word-spacing:3.630000px;}
.ws109{word-spacing:3.696000px;}
.ws9a{word-spacing:3.762000px;}
.ws114{word-spacing:3.894000px;}
.wsf{word-spacing:3.960000px;}
.ws110{word-spacing:4.026000px;}
.ws72{word-spacing:4.092000px;}
.ws50{word-spacing:4.224000px;}
.wsf2{word-spacing:4.266000px;}
.ws40{word-spacing:4.290000px;}
.ws76{word-spacing:4.356000px;}
.ws111{word-spacing:4.422000px;}
.ws32{word-spacing:4.488000px;}
.ws11e{word-spacing:4.620000px;}
.ws125{word-spacing:4.686000px;}
.ws122{word-spacing:4.752000px;}
.ws83{word-spacing:4.884000px;}
.ws7b{word-spacing:4.950000px;}
.ws42{word-spacing:5.082000px;}
.ws39{word-spacing:5.148000px;}
.wsdc{word-spacing:5.184000px;}
.wse5{word-spacing:5.214000px;}
.ws1b{word-spacing:5.340000px;}
.wsee{word-spacing:5.346000px;}
.ws10c{word-spacing:5.478000px;}
.ws66{word-spacing:5.544000px;}
.wse1{word-spacing:5.670000px;}
.ws4f{word-spacing:5.742000px;}
.ws106{word-spacing:5.940000px;}
.ws118{word-spacing:6.072000px;}
.ws74{word-spacing:6.138000px;}
.ws11d{word-spacing:6.336000px;}
.ws117{word-spacing:6.468000px;}
.ws7c{word-spacing:6.534000px;}
.ws7a{word-spacing:6.600000px;}
.ws120{word-spacing:6.732000px;}
.ws8{word-spacing:6.757992px;}
.ws71{word-spacing:6.864000px;}
.wsbd{word-spacing:7.020000px;}
.ws6d{word-spacing:7.128000px;}
.ws10e{word-spacing:7.326000px;}
.ws8a{word-spacing:7.458000px;}
.wsa1{word-spacing:7.656000px;}
.ws82{word-spacing:7.722000px;}
.wsc2{word-spacing:8.100000px;}
.ws81{word-spacing:8.118000px;}
.ws113{word-spacing:8.250000px;}
.ws7f{word-spacing:8.514000px;}
.ws10f{word-spacing:8.580000px;}
.ws73{word-spacing:8.712000px;}
.ws7d{word-spacing:8.844000px;}
.ws41{word-spacing:9.108000px;}
.ws87{word-spacing:9.702000px;}
.ws124{word-spacing:10.164000px;}
.ws121{word-spacing:10.230000px;}
.ws116{word-spacing:10.626000px;}
.ws7e{word-spacing:12.210000px;}
.ws126{word-spacing:15.048000px;}
.ws80{word-spacing:16.170000px;}
.ws119{word-spacing:17.688000px;}
.wsbe{word-spacing:35.280000px;}
.ws5c{word-spacing:51.030000px;}
.ws5d{word-spacing:53.049600px;}
.ws5e{word-spacing:54.000000px;}
.ws24{word-spacing:56.028000px;}
.ws59{word-spacing:72.742800px;}
.ws55{word-spacing:76.650000px;}
.ws58{word-spacing:76.650600px;}
.ws5b{word-spacing:84.937200px;}
.ws5a{word-spacing:85.180800px;}
.ws9d{word-spacing:87.720000px;}
.ws56{word-spacing:98.437200px;}
.ws57{word-spacing:106.347600px;}
.wsb2{word-spacing:107.505000px;}
.wsc6{word-spacing:114.660000px;}
.ws52{word-spacing:148.097400px;}
.wsc0{word-spacing:184.410000px;}
.wsb1{word-spacing:192.915000px;}
.wsbc{word-spacing:220.200000px;}
.ws103{word-spacing:226.884000px;}
.wsff{word-spacing:227.801400px;}
.wsfd{word-spacing:233.249400px;}
.wsfe{word-spacing:234.250800px;}
.ws101{word-spacing:234.451200px;}
.ws63{word-spacing:236.151000px;}
.ws100{word-spacing:260.249400px;}
.ws102{word-spacing:261.150600px;}
.ws64{word-spacing:351.807000px;}
.wsc1{word-spacing:533.205000px;}
.ws62{word-spacing:548.172000px;}
.ws9f{word-spacing:1732.140000px;}
.wsa0{word-spacing:2125.080000px;}
._4c{margin-left:-2106.540000px;}
._58{margin-left:-541.860000px;}
._4b{margin-left:-248.100000px;}
._50{margin-left:-226.800000px;}
._4d{margin-left:-208.200000px;}
._51{margin-left:-203.051275px;}
._55{margin-left:-193.500000px;}
._4f{margin-left:-138.960000px;}
._53{margin-left:-108.600000px;}
._57{margin-left:-95.280000px;}
._54{margin-left:-91.080000px;}
._5a{margin-left:-88.695000px;}
._4e{margin-left:-87.616200px;}
._59{margin-left:-81.000000px;}
._52{margin-left:-67.320000px;}
._56{margin-left:-16.680000px;}
._5b{margin-left:-13.500000px;}
._b{margin-left:-10.560000px;}
._0{margin-left:-8.688725px;}
._3{margin-left:-6.746812px;}
._a{margin-left:-5.556600px;}
._1{margin-left:-4.505328px;}
._4{margin-left:-2.982600px;}
._5{margin-left:-1.965600px;}
._6{width:1.308412px;}
._9{width:2.838000px;}
._8{width:4.170000px;}
._c{width:5.728800px;}
._3f{width:7.107600px;}
._4a{width:8.140200px;}
._e{width:9.322200px;}
._2{width:11.263320px;}
._79{width:15.219600px;}
._d{width:56.028000px;}
._7{width:66.046800px;}
._3d{width:75.820800px;}
._3b{width:84.838800px;}
._46{width:87.558600px;}
._39{width:89.131800px;}
._2b{width:90.150600px;}
._2f{width:93.219600px;}
._3e{width:94.307400px;}
._3a{width:95.946600px;}
._1a{width:98.850000px;}
._2d{width:100.836600px;}
._34{width:101.956200px;}
._2e{width:103.485600px;}
._32{width:104.831400px;}
._33{width:105.931200px;}
._24{width:107.566200px;}
._18{width:108.630600px;}
._35{width:110.081400px;}
._3c{width:111.378600px;}
._1b{width:113.716800px;}
._16{width:115.452000px;}
._1c{width:116.985600px;}
._23{width:120.150000px;}
._19{width:122.249400px;}
._21{width:124.050000px;}
._22{width:125.230800px;}
._31{width:127.744800px;}
._15{width:132.804000px;}
._1d{width:134.426400px;}
._37{width:135.614400px;}
._20{width:137.408400px;}
._36{width:138.488400px;}
._5c{width:140.410800px;}
._30{width:148.194000px;}
._27{width:150.688200px;}
._2c{width:151.837200px;}
._28{width:156.691200px;}
._12{width:163.411200px;}
._25{width:165.102600px;}
._13{width:166.727400px;}
._29{width:172.120800px;}
._2a{width:178.128600px;}
._1f{width:179.857800px;}
._26{width:185.278800px;}
._42{width:190.379400px;}
._1e{width:201.151200px;}
._17{width:202.750800px;}
._11{width:205.861200px;}
._38{width:207.547388px;}
._5e{width:211.272600px;}
._72{width:213.253200px;}
._64{width:224.772600px;}
._f{width:227.161200px;}
._5f{width:234.148800px;}
._6d{width:238.272600px;}
._6e{width:239.272800px;}
._6f{width:241.153800px;}
._62{width:246.749400px;}
._67{width:248.653200px;}
._75{width:251.176872px;}
._76{width:253.267128px;}
._44{width:256.847400px;}
._10{width:269.761200px;}
._61{width:273.750000px;}
._78{width:275.388412px;}
._73{width:281.787600px;}
._47{width:283.404000px;}
._49{width:285.341212px;}
._41{width:296.907000px;}
._48{width:300.449400px;}
._71{width:302.337600px;}
._60{width:314.513328px;}
._6a{width:321.000000px;}
._45{width:324.469800px;}
._74{width:328.466928px;}
._6b{width:334.499400px;}
._43{width:338.119800px;}
._77{width:351.339600px;}
._68{width:393.218812px;}
._65{width:400.026000px;}
._69{width:419.466000px;}
._5d{width:423.462000px;}
._63{width:466.014000px;}
._66{width:489.936000px;}
._40{width:517.839000px;}
._70{width:519.648600px;}
._6c{width:549.390000px;}
._14{width:623.229000px;}
.fc7{color:rgb(238,37,44);}
.fc6{color:rgb(189,66,76);}
.fc5{color:rgb(177,86,56);}
.fc3{color:rgb(255,255,255);}
.fc8{color:rgb(53,112,193);}
.fc2{color:rgb(198,56,54);}
.fc1{color:rgb(133,138,141);}
.fc4{color:rgb(40,41,42);}
.fc0{color:rgb(27,24,26);}
.fsc{font-size:33.600000px;}
.fsb{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fse{font-size:45.000000px;}
.fsa{font-size:46.200000px;}
.fsd{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fsf{font-size:61.434844px;}
.fs9{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:112.633200px;}
.fs1{font-size:144.814200px;}
.y0{bottom:0.000000px;}
.yd6{bottom:5.999700px;}
.ye4{bottom:8.577750px;}
.ydb{bottom:9.000600px;}
.yd5{bottom:10.499700px;}
.yd0{bottom:18.000300px;}
.ybd{bottom:19.499550px;}
.y1{bottom:57.631050px;}
.y10d{bottom:98.173200px;}
.yef{bottom:112.736100px;}
.y10c{bottom:115.423200px;}
.ye9{bottom:117.230250px;}
.yb4{bottom:119.758200px;}
.yf3{bottom:127.653300px;}
.y60{bottom:128.314950px;}
.y31{bottom:129.052950px;}
.yee{bottom:129.986100px;}
.y10b{bottom:132.673200px;}
.ye8{bottom:134.480250px;}
.yb3{bottom:136.858200px;}
.y9f{bottom:138.240450px;}
.y9e{bottom:138.240750px;}
.y9d{bottom:138.240900px;}
.y9c{bottom:138.241050px;}
.y9b{bottom:138.241200px;}
.y9a{bottom:138.241350px;}
.y99{bottom:138.241650px;}
.y98{bottom:138.241800px;}
.y97{bottom:138.241950px;}
.y96{bottom:138.242100px;}
.y95{bottom:138.242400px;}
.y94{bottom:138.242550px;}
.y93{bottom:138.242700px;}
.y92{bottom:138.242850px;}
.y91{bottom:138.243000px;}
.y90{bottom:138.243300px;}
.y8f{bottom:138.243450px;}
.y8e{bottom:138.243600px;}
.y8d{bottom:138.243750px;}
.y8c{bottom:138.244050px;}
.y6a{bottom:138.244200px;}
.yf2{bottom:144.903300px;}
.yf8{bottom:146.292000px;}
.y30{bottom:147.052950px;}
.yed{bottom:147.236100px;}
.y5f{bottom:149.314950px;}
.yb2{bottom:150.358200px;}
.ye7{bottom:151.730250px;}
.yf1{bottom:162.153300px;}
.yf7{bottom:163.542000px;}
.yb1{bottom:163.858200px;}
.yec{bottom:164.486100px;}
.ye6{bottom:168.980250px;}
.y5e{bottom:170.314950px;}
.yb0{bottom:177.358200px;}
.yf0{bottom:179.403300px;}
.yf6{bottom:180.792000px;}
.yeb{bottom:181.736100px;}
.y2f{bottom:183.052950px;}
.ye5{bottom:186.230250px;}
.y6c{bottom:188.869200px;}
.yaf{bottom:190.858200px;}
.y5d{bottom:191.314950px;}
.y10a{bottom:195.052500px;}
.y104{bottom:197.453850px;}
.yf5{bottom:198.042000px;}
.yea{bottom:198.986100px;}
.y2e{bottom:201.052950px;}
.yfe{bottom:204.094500px;}
.yae{bottom:204.358200px;}
.y109{bottom:212.302500px;}
.y5c{bottom:212.314950px;}
.y103{bottom:214.703850px;}
.yf4{bottom:215.292000px;}
.y2d{bottom:219.052950px;}
.yfd{bottom:221.344500px;}
.yad{bottom:226.086450px;}
.y108{bottom:229.552500px;}
.y102{bottom:231.953850px;}
.y5b{bottom:233.314950px;}
.y2c{bottom:237.052950px;}
.yfc{bottom:238.594500px;}
.yac{bottom:239.586450px;}
.y107{bottom:246.802500px;}
.y101{bottom:249.203850px;}
.y5a{bottom:254.314950px;}
.y2b{bottom:255.052950px;}
.yfb{bottom:255.844500px;}
.yab{bottom:257.450700px;}
.y6d{bottom:260.804400px;}
.y106{bottom:264.052500px;}
.y100{bottom:266.453850px;}
.yaa{bottom:270.950700px;}
.y2a{bottom:273.052950px;}
.yfa{bottom:273.094500px;}
.y59{bottom:275.314950px;}
.y6b{bottom:276.307800px;}
.y105{bottom:281.302500px;}
.yff{bottom:283.703850px;}
.ya9{bottom:288.814950px;}
.yf9{bottom:290.344500px;}
.y29{bottom:291.052950px;}
.y58{bottom:296.314950px;}
.ya8{bottom:302.314950px;}
.y28{bottom:309.052950px;}
.y57{bottom:317.314950px;}
.y6f{bottom:318.272550px;}
.ya7{bottom:320.179350px;}
.y27{bottom:327.052950px;}
.y6e{bottom:329.595750px;}
.ya6{bottom:333.679350px;}
.y56{bottom:338.314950px;}
.y26{bottom:345.052950px;}
.ya5{bottom:351.543600px;}
.y55{bottom:359.314950px;}
.y25{bottom:363.052950px;}
.ya4{bottom:365.043600px;}
.y54{bottom:380.314950px;}
.y24{bottom:381.052950px;}
.ya3{bottom:382.907850px;}
.y71{bottom:392.710050px;}
.ya2{bottom:396.407850px;}
.y23{bottom:399.052950px;}
.y53{bottom:401.314950px;}
.y70{bottom:407.701200px;}
.y22{bottom:417.052950px;}
.y52{bottom:422.314950px;}
.ya1{bottom:422.776050px;}
.ye3{bottom:432.862500px;}
.y21{bottom:435.052950px;}
.yd4{bottom:436.237500px;}
.ydf{bottom:438.856650px;}
.ye1{bottom:438.862200px;}
.ye0{bottom:441.440250px;}
.ydd{bottom:441.442200px;}
.yd3{bottom:442.237200px;}
.y51{bottom:443.314950px;}
.ye2{bottom:445.938450px;}
.yd7{bottom:446.737200px;}
.ya0{bottom:448.104150px;}
.y20{bottom:453.052950px;}
.yde{bottom:462.909150px;}
.y50{bottom:464.314950px;}
.ydc{bottom:465.487200px;}
.y73{bottom:466.163700px;}
.y72{bottom:467.159850px;}
.y1f{bottom:471.052950px;}
.ybc{bottom:478.902000px;}
.yb8{bottom:483.448500px;}
.y4f{bottom:485.314950px;}
.yb7{bottom:486.566550px;}
.yb6{bottom:486.581550px;}
.yc5{bottom:486.589050px;}
.y1e{bottom:489.052950px;}
.yc1{bottom:491.087250px;}
.yba{bottom:496.386000px;}
.yb5{bottom:498.401550px;}
.yc3{bottom:504.542250px;}
.yc0{bottom:505.386000px;}
.y4e{bottom:506.314950px;}
.y1d{bottom:507.052950px;}
.ybe{bottom:507.956550px;}
.yb9{bottom:512.417250px;}
.y74{bottom:512.510850px;}
.yc2{bottom:516.917250px;}
.ybb{bottom:517.482000px;}
.ybf{bottom:519.491550px;}
.y75{bottom:519.676800px;}
.y1c{bottom:525.052950px;}
.y4d{bottom:527.314950px;}
.yc4{bottom:533.511000px;}
.y1b{bottom:543.052950px;}
.y4c{bottom:548.314950px;}
.y76{bottom:559.723050px;}
.y77{bottom:568.356000px;}
.y4b{bottom:569.314950px;}
.y1a{bottom:582.312900px;}
.y4a{bottom:590.314950px;}
.y19{bottom:600.312900px;}
.y78{bottom:611.211450px;}
.y49{bottom:611.314950px;}
.y79{bottom:614.477400px;}
.y18{bottom:618.312900px;}
.y48{bottom:632.314950px;}
.y17{bottom:636.312900px;}
.y47{bottom:653.314950px;}
.y16{bottom:654.312900px;}
.y7b{bottom:656.892900px;}
.y128{bottom:657.098100px;}
.y7a{bottom:658.823100px;}
.y15{bottom:672.312900px;}
.y46{bottom:674.314950px;}
.y127{bottom:674.962350px;}
.y14{bottom:690.312900px;}
.y126{bottom:692.826600px;}
.y45{bottom:695.314950px;}
.y7c{bottom:706.081500px;}
.ycf{bottom:706.486500px;}
.y13{bottom:708.312900px;}
.y125{bottom:710.690850px;}
.y7d{bottom:712.387350px;}
.yc8{bottom:712.666800px;}
.yce{bottom:712.670550px;}
.y44{bottom:716.314950px;}
.ycb{bottom:717.172350px;}
.yc6{bottom:724.486800px;}
.y12{bottom:726.312900px;}
.y124{bottom:728.555250px;}
.yc9{bottom:730.627350px;}
.y43{bottom:737.314950px;}
.yd1{bottom:743.002350px;}
.ycc{bottom:743.564850px;}
.yc7{bottom:745.576800px;}
.ycd{bottom:745.580550px;}
.y123{bottom:746.419500px;}
.yca{bottom:750.078600px;}
.y42{bottom:758.314950px;}
.y7e{bottom:759.381000px;}
.yd2{bottom:759.596100px;}
.y7f{bottom:761.757600px;}
.y122{bottom:764.283750px;}
.y11{bottom:765.572700px;}
.y41{bottom:779.314950px;}
.y121{bottom:782.148000px;}
.y10{bottom:783.572700px;}
.y120{bottom:800.012400px;}
.y40{bottom:800.314950px;}
.yf{bottom:801.572700px;}
.y11f{bottom:817.876650px;}
.y80{bottom:818.302800px;}
.y3f{bottom:821.314950px;}
.y81{bottom:824.800800px;}
.y11e{bottom:835.740900px;}
.y3e{bottom:842.314950px;}
.y11d{bottom:853.605150px;}
.y83{bottom:860.059650px;}
.y3d{bottom:863.314950px;}
.y82{bottom:869.382000px;}
.ye{bottom:870.596250px;}
.y11c{bottom:871.469550px;}
.y3c{bottom:884.314950px;}
.y11b{bottom:889.333800px;}
.yd{bottom:900.596250px;}
.y3b{bottom:905.314950px;}
.y11a{bottom:907.198050px;}
.y84{bottom:917.639400px;}
.y85{bottom:921.811350px;}
.y119{bottom:925.062450px;}
.y69{bottom:926.314950px;}
.y86{bottom:929.466600px;}
.yc{bottom:930.596250px;}
.yda{bottom:941.025000px;}
.y118{bottom:942.926700px;}
.y3a{bottom:947.314950px;}
.yd9{bottom:947.447550px;}
.yd8{bottom:950.025600px;}
.y117{bottom:960.790950px;}
.y68{bottom:968.314950px;}
.y116{bottom:978.655200px;}
.y87{bottom:987.266100px;}
.y67{bottom:989.314950px;}
.y88{bottom:990.271950px;}
.ya{bottom:994.612050px;}
.y115{bottom:996.519600px;}
.yb{bottom:1000.012050px;}
.y66{bottom:1010.314950px;}
.y114{bottom:1014.383850px;}
.y39{bottom:1016.875200px;}
.y89{bottom:1030.454100px;}
.y65{bottom:1031.314950px;}
.y8a{bottom:1031.948250px;}
.y113{bottom:1032.248100px;}
.y38{bottom:1034.875200px;}
.y112{bottom:1050.112500px;}
.y64{bottom:1052.314950px;}
.y37{bottom:1052.875200px;}
.y111{bottom:1067.976600px;}
.y36{bottom:1070.875200px;}
.y63{bottom:1073.314950px;}
.y9{bottom:1081.226850px;}
.y8b{bottom:1083.837750px;}
.y35{bottom:1088.875200px;}
.y62{bottom:1094.314950px;}
.y110{bottom:1094.344950px;}
.y8{bottom:1099.226850px;}
.y34{bottom:1106.875200px;}
.y61{bottom:1115.314950px;}
.y7{bottom:1117.226850px;}
.y10f{bottom:1119.673050px;}
.y33{bottom:1124.875200px;}
.y6{bottom:1135.226850px;}
.y10e{bottom:1136.923050px;}
.y2{bottom:1143.169950px;}
.y5{bottom:1161.730800px;}
.y4{bottom:1179.730800px;}
.y32{bottom:1189.226850px;}
.y3{bottom:1197.730800px;}
.h22{height:22.498500px;}
.hf{height:23.395312px;}
.h24{height:24.000000px;}
.h1e{height:31.500000px;}
.h1a{height:33.345000px;}
.h10{height:33.421875px;}
.h6{height:36.717188px;}
.he{height:37.599609px;}
.h11{height:37.795312px;}
.h8{height:39.313477px;}
.h4{height:39.339844px;}
.h2{height:41.777344px;}
.h1c{height:42.000000px;}
.h16{height:42.519127px;}
.h12{height:42.519727px;}
.h2b{height:42.520327px;}
.h20{height:44.460000px;}
.h25{height:45.523219px;}
.h2c{height:45.826172px;}
.hb{height:45.955078px;}
.h9{height:47.244141px;}
.hd{height:48.796875px;}
.h28{height:49.498500px;}
.h23{height:49.500000px;}
.h2a{height:49.992188px;}
.h29{height:50.132812px;}
.hc{height:51.968555px;}
.h26{height:52.312200px;}
.h1b{height:53.352000px;}
.ha{height:56.929688px;}
.h5{height:58.317188px;}
.h27{height:59.805000px;}
.h21{height:66.000000px;}
.h1d{height:67.500000px;}
.h7{height:73.195312px;}
.h17{height:82.680000px;}
.h1f{height:89.220000px;}
.h13{height:91.599609px;}
.h19{height:91.680000px;}
.h15{height:96.519127px;}
.h14{height:96.519727px;}
.h3{height:112.810262px;}
.h18{height:129.900000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:601.500000px;}
.w3{width:603.000000px;}
.w4{width:618.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x63{left:25.125600px;}
.x64{left:37.359900px;}
.x5e{left:80.109900px;}
.x5f{left:116.203650px;}
.x2{left:128.209500px;}
.x3a{left:130.324800px;}
.x69{left:132.655350px;}
.x39{left:136.063050px;}
.x62{left:137.121600px;}
.x38{left:140.314950px;}
.x67{left:151.600350px;}
.xf{left:156.808800px;}
.x68{left:162.235350px;}
.xe{left:170.078700px;}
.x49{left:171.149100px;}
.x48{left:172.465350px;}
.x10{left:174.058800px;}
.x3d{left:176.402850px;}
.x59{left:178.133400px;}
.x3e{left:179.305350px;}
.x50{left:182.965350px;}
.x51{left:184.979100px;}
.x5c{left:188.629650px;}
.x6e{left:189.823200px;}
.xb{left:191.338650px;}
.x11{left:195.787050px;}
.x66{left:197.391150px;}
.x41{left:198.482850px;}
.xc{left:199.842450px;}
.x57{left:202.313100px;}
.x4f{left:203.824800px;}
.x46{left:209.590350px;}
.x3b{left:212.824800px;}
.x61{left:214.090350px;}
.xd{left:216.850350px;}
.x52{left:218.164650px;}
.x42{left:223.472850px;}
.x53{left:227.029650px;}
.x12{left:229.711200px;}
.x5b{left:233.258400px;}
.x47{left:235.139100px;}
.x56{left:237.441600px;}
.x13{left:243.211200px;}
.x3f{left:248.156850px;}
.x5a{left:253.834650px;}
.x65{left:259.887150px;}
.x58{left:261.055200px;}
.x43{left:262.652850px;}
.x14{left:269.579550px;}
.x55{left:273.098400px;}
.x3c{left:280.234800px;}
.x5d{left:284.074650px;}
.x15{left:287.443800px;}
.x44{left:290.867850px;}
.x4a{left:302.346600px;}
.x16{left:305.308050px;}
.x54{left:315.758400px;}
.x31{left:320.845800px;}
.x17{left:323.172300px;}
.x4c{left:331.731600px;}
.x34{left:334.167750px;}
.x4d{left:335.804100px;}
.x18{left:341.036700px;}
.x45{left:350.402850px;}
.x6f{left:353.013000px;}
.x36{left:354.961650px;}
.x19{left:358.900950px;}
.x4b{left:362.905350px;}
.x4e{left:367.169100px;}
.x6b{left:368.871600px;}
.x6a{left:375.480900px;}
.x1a{left:376.765200px;}
.x6c{left:388.851600px;}
.x1b{left:394.629450px;}
.x1c{left:412.493700px;}
.x1d{left:430.358100px;}
.x6d{left:438.956700px;}
.x1{left:442.706700px;}
.x1e{left:448.222350px;}
.x32{left:461.925900px;}
.x1f{left:466.086600px;}
.x20{left:483.951000px;}
.x8{left:492.501750px;}
.x21{left:501.815250px;}
.x37{left:515.355750px;}
.x3{left:520.273050px;}
.x22{left:537.543750px;}
.x9{left:539.066250px;}
.x23{left:555.408150px;}
.x24{left:573.272400px;}
.x5{left:576.527400px;}
.x25{left:591.136650px;}
.x35{left:607.669350px;}
.x4{left:611.852850px;}
.x26{left:616.464900px;}
.x6{left:619.354350px;}
.x7{left:624.331200px;}
.x27{left:629.964900px;}
.xa{left:633.834450px;}
.x28{left:643.464900px;}
.x29{left:656.964900px;}
.x33{left:663.007500px;}
.x2a{left:670.464900px;}
.x2b{left:683.964900px;}
.x2c{left:697.464900px;}
.x2d{left:710.964900px;}
.x40{left:720.902850px;}
.x60{left:722.027850px;}
.x2e{left:724.464900px;}
.x2f{left:737.964900px;}
.x30{left:751.464900px;}
@media print{
.vf{vertical-align:-41.973333pt;}
.v13{vertical-align:-33.840000pt;}
.ve{vertical-align:-28.000000pt;}
.v10{vertical-align:-25.000000pt;}
.v2{vertical-align:-19.200000pt;}
.v12{vertical-align:-17.600000pt;}
.v4{vertical-align:-16.000000pt;}
.va{vertical-align:-14.400000pt;}
.vb{vertical-align:-12.800000pt;}
.v11{vertical-align:-8.800000pt;}
.v6{vertical-align:-7.200000pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:9.166400pt;}
.v7{vertical-align:12.800000pt;}
.v8{vertical-align:14.400000pt;}
.v3{vertical-align:16.000000pt;}
.v5{vertical-align:17.600000pt;}
.v1{vertical-align:19.200000pt;}
.v16{vertical-align:21.600000pt;}
.v15{vertical-align:25.160000pt;}
.v9{vertical-align:33.600000pt;}
.vc{vertical-align:41.973333pt;}
.vd{vertical-align:75.946667pt;}
.ls4{letter-spacing:-16.018944pt;}
.ls3{letter-spacing:-6.007104pt;}
.ls6c{letter-spacing:-1.973333pt;}
.ls15{letter-spacing:-1.776000pt;}
.lsa{letter-spacing:-0.960000pt;}
.ls75{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.645333pt;}
.ls77{letter-spacing:-0.586667pt;}
.ls17{letter-spacing:-0.528000pt;}
.ls1b{letter-spacing:-0.469333pt;}
.ls1a{letter-spacing:-0.410667pt;}
.ls6b{letter-spacing:-0.369600pt;}
.ls10{letter-spacing:-0.352000pt;}
.ls5{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.293333pt;}
.ls35{letter-spacing:-0.280000pt;}
.ls12{letter-spacing:-0.234667pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls19{letter-spacing:-0.176000pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls18{letter-spacing:-0.117333pt;}
.lsd{letter-spacing:-0.106667pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls50{letter-spacing:-0.082133pt;}
.ls53{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.074667pt;}
.ls16{letter-spacing:-0.058667pt;}
.ls8{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.000533pt;}
.ls4e{letter-spacing:0.002667pt;}
.ls2b{letter-spacing:0.005867pt;}
.ls0{letter-spacing:0.006400pt;}
.ls14{letter-spacing:0.006933pt;}
.ls13{letter-spacing:0.007467pt;}
.ls74{letter-spacing:0.008000pt;}
.ls3b{letter-spacing:0.008533pt;}
.ls2c{letter-spacing:0.009067pt;}
.ls2e{letter-spacing:0.009600pt;}
.ls2a{letter-spacing:0.010133pt;}
.ls45{letter-spacing:0.040000pt;}
.ls72{letter-spacing:0.083200pt;}
.ls37{letter-spacing:0.086933pt;}
.ls32{letter-spacing:0.106667pt;}
.ls3c{letter-spacing:0.266667pt;}
.ls70{letter-spacing:0.451733pt;}
.ls76{letter-spacing:0.822933pt;}
.ls78{letter-spacing:0.946667pt;}
.ls6e{letter-spacing:0.976000pt;}
.ls1c{letter-spacing:0.976533pt;}
.ls73{letter-spacing:1.232533pt;}
.ls6d{letter-spacing:1.937067pt;}
.ls1{letter-spacing:2.229333pt;}
.ls71{letter-spacing:2.329600pt;}
.ls6f{letter-spacing:3.230933pt;}
.ls11{letter-spacing:3.754133pt;}
.ls39{letter-spacing:5.973333pt;}
.ls42{letter-spacing:6.186667pt;}
.ls24{letter-spacing:12.053333pt;}
.ls1d{letter-spacing:13.333333pt;}
.ls4c{letter-spacing:30.080000pt;}
.ls49{letter-spacing:43.360000pt;}
.ls64{letter-spacing:44.480000pt;}
.ls60{letter-spacing:44.746667pt;}
.ls62{letter-spacing:45.333333pt;}
.ls63{letter-spacing:47.360000pt;}
.ls61{letter-spacing:49.013333pt;}
.ls57{letter-spacing:50.294659pt;}
.ls5a{letter-spacing:50.400000pt;}
.ls48{letter-spacing:52.213333pt;}
.ls3e{letter-spacing:53.866667pt;}
.ls47{letter-spacing:56.480000pt;}
.ls55{letter-spacing:57.866667pt;}
.ls3a{letter-spacing:58.386667pt;}
.ls22{letter-spacing:60.533333pt;}
.ls30{letter-spacing:64.853333pt;}
.ls25{letter-spacing:65.066667pt;}
.ls52{letter-spacing:70.346667pt;}
.ls4b{letter-spacing:74.200000pt;}
.ls54{letter-spacing:78.120000pt;}
.ls31{letter-spacing:78.400000pt;}
.ls69{letter-spacing:81.680000pt;}
.ls20{letter-spacing:81.706667pt;}
.ls66{letter-spacing:86.880000pt;}
.ls33{letter-spacing:87.880000pt;}
.ls68{letter-spacing:90.346667pt;}
.ls26{letter-spacing:90.400000pt;}
.ls5c{letter-spacing:105.386667pt;}
.ls34{letter-spacing:105.440000pt;}
.ls1f{letter-spacing:107.573333pt;}
.ls21{letter-spacing:110.720000pt;}
.ls44{letter-spacing:129.920000pt;}
.ls5d{letter-spacing:135.413333pt;}
.ls40{letter-spacing:135.680000pt;}
.ls67{letter-spacing:146.986667pt;}
.ls5e{letter-spacing:157.066667pt;}
.ls1e{letter-spacing:160.053333pt;}
.ls46{letter-spacing:165.680000pt;}
.ls3f{letter-spacing:166.880000pt;}
.ls56{letter-spacing:190.400000pt;}
.ls59{letter-spacing:201.493333pt;}
.ls36{letter-spacing:213.013333pt;}
.ls5f{letter-spacing:216.373333pt;}
.ls5b{letter-spacing:219.733333pt;}
.ls41{letter-spacing:225.600000pt;}
.ls3d{letter-spacing:237.066667pt;}
.ls38{letter-spacing:287.280000pt;}
.ls65{letter-spacing:299.840000pt;}
.ls51{letter-spacing:325.706667pt;}
.ls27{letter-spacing:331.080000pt;}
.ls23{letter-spacing:541.560000pt;}
.ls29{letter-spacing:543.520000pt;}
.ls6a{letter-spacing:807.680000pt;}
.ls2f{letter-spacing:1176.480000pt;}
.ls4f{letter-spacing:1195.459733pt;}
.ls28{letter-spacing:1318.986667pt;}
.ls43{letter-spacing:1333.173333pt;}
.ls58{letter-spacing:1349.813333pt;}
.ls4d{letter-spacing:1593.666667pt;}
.ls4a{letter-spacing:1643.840000pt;}
.wsab{word-spacing:-1643.840000pt;}
.wscc{word-spacing:-1349.813333pt;}
.wsa6{word-spacing:-1333.173333pt;}
.ws94{word-spacing:-1176.480000pt;}
.wsd3{word-spacing:-807.680000pt;}
.wsb0{word-spacing:-325.760000pt;}
.wsbf{word-spacing:-299.893333pt;}
.wsa2{word-spacing:-237.066667pt;}
.ws9c{word-spacing:-225.653333pt;}
.wsb9{word-spacing:-219.786667pt;}
.wsbb{word-spacing:-216.426667pt;}
.ws85{word-spacing:-213.066667pt;}
.wsb7{word-spacing:-201.546667pt;}
.wsb5{word-spacing:-190.453333pt;}
.wsa4{word-spacing:-166.880000pt;}
.wsa8{word-spacing:-165.680000pt;}
.wsc3{word-spacing:-157.120000pt;}
.wsce{word-spacing:-157.066667pt;}
.wsc5{word-spacing:-147.040000pt;}
.wsa5{word-spacing:-135.680000pt;}
.wsba{word-spacing:-135.466667pt;}
.ws98{word-spacing:-105.440000pt;}
.ws93{word-spacing:-90.400000pt;}
.wsd1{word-spacing:-90.346667pt;}
.ws97{word-spacing:-87.880000pt;}
.wsc4{word-spacing:-86.933333pt;}
.ws9e{word-spacing:-83.893333pt;}
.wsc7{word-spacing:-81.720000pt;}
.ws96{word-spacing:-78.400000pt;}
.wsb3{word-spacing:-78.160000pt;}
.ws84{word-spacing:-76.960000pt;}
.wsac{word-spacing:-74.200000pt;}
.wscb{word-spacing:-70.346667pt;}
.ws95{word-spacing:-64.853333pt;}
.wsea{word-spacing:-64.000000pt;}
.ws86{word-spacing:-58.666667pt;}
.ws61{word-spacing:-54.176000pt;}
.wsa3{word-spacing:-53.866667pt;}
.wsa9{word-spacing:-52.213333pt;}
.wsb8{word-spacing:-50.453333pt;}
.wscf{word-spacing:-44.746667pt;}
.wsd0{word-spacing:-44.480000pt;}
.wsaa{word-spacing:-43.360000pt;}
.ws0{word-spacing:-39.904357pt;}
.wsb4{word-spacing:-38.026667pt;}
.wsad{word-spacing:-30.080000pt;}
.ws1{word-spacing:-25.029600pt;}
.ws115{word-spacing:-18.666667pt;}
.wsc8{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.017760pt;}
.ws1e{word-spacing:-14.666667pt;}
.wsf4{word-spacing:-14.549333pt;}
.ws11c{word-spacing:-14.490667pt;}
.ws123{word-spacing:-14.256000pt;}
.wsd5{word-spacing:-14.138667pt;}
.wsb6{word-spacing:-13.816014pt;}
.ws3{word-spacing:-13.344000pt;}
.ws5{word-spacing:-13.333333pt;}
.ws1d{word-spacing:-12.384000pt;}
.ws4{word-spacing:-12.000000pt;}
.wsc9{word-spacing:-11.200000pt;}
.ws54{word-spacing:-10.666667pt;}
.ws1f{word-spacing:-10.266667pt;}
.wsaf{word-spacing:-10.184533pt;}
.wsd6{word-spacing:-9.897067pt;}
.ws6{word-spacing:-9.333333pt;}
.ws51{word-spacing:-8.400000pt;}
.ws53{word-spacing:-7.466667pt;}
.ws60{word-spacing:-6.000000pt;}
.ws9{word-spacing:-3.520000pt;}
.ws25{word-spacing:-2.933333pt;}
.wsd4{word-spacing:-2.874667pt;}
.ws4a{word-spacing:-2.816000pt;}
.wsf6{word-spacing:-2.757333pt;}
.ws3b{word-spacing:-2.698667pt;}
.wsa{word-spacing:-2.688000pt;}
.wsc{word-spacing:-2.666667pt;}
.ws8c{word-spacing:-2.640000pt;}
.ws88{word-spacing:-2.581333pt;}
.ws34{word-spacing:-2.464000pt;}
.ws2d{word-spacing:-2.346667pt;}
.ws18{word-spacing:-2.240000pt;}
.ws91{word-spacing:-2.229333pt;}
.wsec{word-spacing:-2.112000pt;}
.ws46{word-spacing:-2.053333pt;}
.wsef{word-spacing:-1.994667pt;}
.ws4e{word-spacing:-1.936000pt;}
.ws6f{word-spacing:-1.877333pt;}
.ws10d{word-spacing:-1.818667pt;}
.ws1c{word-spacing:-1.813333pt;}
.ws90{word-spacing:-1.760000pt;}
.wse7{word-spacing:-1.728000pt;}
.ws28{word-spacing:-1.642667pt;}
.ws3d{word-spacing:-1.584000pt;}
.ws38{word-spacing:-1.525333pt;}
.ws6b{word-spacing:-1.466667pt;}
.wsfb{word-spacing:-1.440000pt;}
.ws3a{word-spacing:-1.408000pt;}
.ws6c{word-spacing:-1.349333pt;}
.wsf9{word-spacing:-1.290667pt;}
.ws48{word-spacing:-1.232000pt;}
.ws108{word-spacing:-1.173333pt;}
.ws3c{word-spacing:-1.114667pt;}
.ws23{word-spacing:-1.013333pt;}
.ws3f{word-spacing:-0.997333pt;}
.ws4b{word-spacing:-0.938667pt;}
.ws43{word-spacing:-0.880000pt;}
.ws26{word-spacing:-0.821333pt;}
.ws92{word-spacing:-0.762667pt;}
.ws8f{word-spacing:-0.704000pt;}
.wsf0{word-spacing:-0.645333pt;}
.wseb{word-spacing:-0.586667pt;}
.ws89{word-spacing:-0.528000pt;}
.ws8e{word-spacing:-0.469333pt;}
.ws11a{word-spacing:-0.410667pt;}
.ws112{word-spacing:-0.352000pt;}
.ws11{word-spacing:-0.320000pt;}
.ws10b{word-spacing:-0.293333pt;}
.wsed{word-spacing:-0.234667pt;}
.ws3e{word-spacing:-0.176000pt;}
.ws47{word-spacing:-0.117333pt;}
.ws13{word-spacing:-0.106667pt;}
.ws105{word-spacing:-0.096000pt;}
.wse4{word-spacing:-0.058667pt;}
.wsa7{word-spacing:-0.040000pt;}
.ws7{word-spacing:0.000000pt;}
.ws12{word-spacing:0.053333pt;}
.ws6a{word-spacing:0.058667pt;}
.ws21{word-spacing:0.074667pt;}
.wsd2{word-spacing:0.080000pt;}
.ws20{word-spacing:0.096000pt;}
.ws10{word-spacing:0.106667pt;}
.ws6e{word-spacing:0.117333pt;}
.ws15{word-spacing:0.160000pt;}
.ws70{word-spacing:0.176000pt;}
.wse{word-spacing:0.213333pt;}
.ws10a{word-spacing:0.234667pt;}
.ws99{word-spacing:0.280000pt;}
.wsdf{word-spacing:0.293333pt;}
.wsb{word-spacing:0.320000pt;}
.wsdd{word-spacing:0.336000pt;}
.ws79{word-spacing:0.352000pt;}
.wsd7{word-spacing:0.369600pt;}
.ws45{word-spacing:0.410667pt;}
.ws77{word-spacing:0.469333pt;}
.ws107{word-spacing:0.528000pt;}
.ws35{word-spacing:0.586667pt;}
.wsca{word-spacing:0.645333pt;}
.ws14{word-spacing:0.693333pt;}
.ws2c{word-spacing:0.704000pt;}
.ws4c{word-spacing:0.762667pt;}
.wsdb{word-spacing:0.816000pt;}
.ws8b{word-spacing:0.821333pt;}
.ws11b{word-spacing:0.938667pt;}
.wsde{word-spacing:0.960000pt;}
.wsfa{word-spacing:0.997333pt;}
.ws1a{word-spacing:1.013333pt;}
.ws65{word-spacing:1.056000pt;}
.wse3{word-spacing:1.114667pt;}
.wsae{word-spacing:1.173333pt;}
.ws33{word-spacing:1.290667pt;}
.wse8{word-spacing:1.344000pt;}
.wsf7{word-spacing:1.349333pt;}
.ws8d{word-spacing:1.408000pt;}
.ws2b{word-spacing:1.466667pt;}
.wscd{word-spacing:1.525333pt;}
.ws27{word-spacing:1.642667pt;}
.wsd8{word-spacing:1.680000pt;}
.wsf8{word-spacing:1.701333pt;}
.ws30{word-spacing:1.760000pt;}
.ws5f{word-spacing:1.776000pt;}
.wsda{word-spacing:1.818667pt;}
.wse0{word-spacing:1.872000pt;}
.ws44{word-spacing:1.877333pt;}
.ws22{word-spacing:1.920000pt;}
.ws49{word-spacing:1.936000pt;}
.wsd9{word-spacing:1.973333pt;}
.ws29{word-spacing:1.994667pt;}
.ws2e{word-spacing:2.053333pt;}
.ws9b{word-spacing:2.112000pt;}
.ws78{word-spacing:2.170667pt;}
.wsf1{word-spacing:2.229333pt;}
.wsd{word-spacing:2.240000pt;}
.wse9{word-spacing:2.256000pt;}
.wse2{word-spacing:2.288000pt;}
.ws67{word-spacing:2.346667pt;}
.wsf5{word-spacing:2.405333pt;}
.wsf3{word-spacing:2.448000pt;}
.ws4d{word-spacing:2.522667pt;}
.wsfc{word-spacing:2.544000pt;}
.ws68{word-spacing:2.581333pt;}
.ws37{word-spacing:2.640000pt;}
.ws2a{word-spacing:2.698667pt;}
.wse6{word-spacing:2.757333pt;}
.ws16{word-spacing:2.773333pt;}
.ws31{word-spacing:2.816000pt;}
.ws104{word-spacing:2.832000pt;}
.ws19{word-spacing:2.880000pt;}
.ws75{word-spacing:2.933333pt;}
.ws36{word-spacing:2.992000pt;}
.ws11f{word-spacing:3.050667pt;}
.ws69{word-spacing:3.109333pt;}
.ws17{word-spacing:3.146667pt;}
.ws2f{word-spacing:3.226667pt;}
.ws109{word-spacing:3.285333pt;}
.ws9a{word-spacing:3.344000pt;}
.ws114{word-spacing:3.461333pt;}
.wsf{word-spacing:3.520000pt;}
.ws110{word-spacing:3.578667pt;}
.ws72{word-spacing:3.637333pt;}
.ws50{word-spacing:3.754667pt;}
.wsf2{word-spacing:3.792000pt;}
.ws40{word-spacing:3.813333pt;}
.ws76{word-spacing:3.872000pt;}
.ws111{word-spacing:3.930667pt;}
.ws32{word-spacing:3.989333pt;}
.ws11e{word-spacing:4.106667pt;}
.ws125{word-spacing:4.165333pt;}
.ws122{word-spacing:4.224000pt;}
.ws83{word-spacing:4.341333pt;}
.ws7b{word-spacing:4.400000pt;}
.ws42{word-spacing:4.517333pt;}
.ws39{word-spacing:4.576000pt;}
.wsdc{word-spacing:4.608000pt;}
.wse5{word-spacing:4.634667pt;}
.ws1b{word-spacing:4.746667pt;}
.wsee{word-spacing:4.752000pt;}
.ws10c{word-spacing:4.869333pt;}
.ws66{word-spacing:4.928000pt;}
.wse1{word-spacing:5.040000pt;}
.ws4f{word-spacing:5.104000pt;}
.ws106{word-spacing:5.280000pt;}
.ws118{word-spacing:5.397333pt;}
.ws74{word-spacing:5.456000pt;}
.ws11d{word-spacing:5.632000pt;}
.ws117{word-spacing:5.749333pt;}
.ws7c{word-spacing:5.808000pt;}
.ws7a{word-spacing:5.866667pt;}
.ws120{word-spacing:5.984000pt;}
.ws8{word-spacing:6.007104pt;}
.ws71{word-spacing:6.101333pt;}
.wsbd{word-spacing:6.240000pt;}
.ws6d{word-spacing:6.336000pt;}
.ws10e{word-spacing:6.512000pt;}
.ws8a{word-spacing:6.629333pt;}
.wsa1{word-spacing:6.805333pt;}
.ws82{word-spacing:6.864000pt;}
.wsc2{word-spacing:7.200000pt;}
.ws81{word-spacing:7.216000pt;}
.ws113{word-spacing:7.333333pt;}
.ws7f{word-spacing:7.568000pt;}
.ws10f{word-spacing:7.626667pt;}
.ws73{word-spacing:7.744000pt;}
.ws7d{word-spacing:7.861333pt;}
.ws41{word-spacing:8.096000pt;}
.ws87{word-spacing:8.624000pt;}
.ws124{word-spacing:9.034667pt;}
.ws121{word-spacing:9.093333pt;}
.ws116{word-spacing:9.445333pt;}
.ws7e{word-spacing:10.853333pt;}
.ws126{word-spacing:13.376000pt;}
.ws80{word-spacing:14.373333pt;}
.ws119{word-spacing:15.722667pt;}
.wsbe{word-spacing:31.360000pt;}
.ws5c{word-spacing:45.360000pt;}
.ws5d{word-spacing:47.155200pt;}
.ws5e{word-spacing:48.000000pt;}
.ws24{word-spacing:49.802667pt;}
.ws59{word-spacing:64.660267pt;}
.ws55{word-spacing:68.133333pt;}
.ws58{word-spacing:68.133867pt;}
.ws5b{word-spacing:75.499733pt;}
.ws5a{word-spacing:75.716267pt;}
.ws9d{word-spacing:77.973333pt;}
.ws56{word-spacing:87.499733pt;}
.ws57{word-spacing:94.531200pt;}
.wsb2{word-spacing:95.560000pt;}
.wsc6{word-spacing:101.920000pt;}
.ws52{word-spacing:131.642133pt;}
.wsc0{word-spacing:163.920000pt;}
.wsb1{word-spacing:171.480000pt;}
.wsbc{word-spacing:195.733333pt;}
.ws103{word-spacing:201.674667pt;}
.wsff{word-spacing:202.490133pt;}
.wsfd{word-spacing:207.332800pt;}
.wsfe{word-spacing:208.222933pt;}
.ws101{word-spacing:208.401067pt;}
.ws63{word-spacing:209.912000pt;}
.ws100{word-spacing:231.332800pt;}
.ws102{word-spacing:232.133867pt;}
.ws64{word-spacing:312.717333pt;}
.wsc1{word-spacing:473.960000pt;}
.ws62{word-spacing:487.264000pt;}
.ws9f{word-spacing:1539.680000pt;}
.wsa0{word-spacing:1888.960000pt;}
._4c{margin-left:-1872.480000pt;}
._58{margin-left:-481.653333pt;}
._4b{margin-left:-220.533333pt;}
._50{margin-left:-201.600000pt;}
._4d{margin-left:-185.066667pt;}
._51{margin-left:-180.490022pt;}
._55{margin-left:-172.000000pt;}
._4f{margin-left:-123.520000pt;}
._53{margin-left:-96.533333pt;}
._57{margin-left:-84.693333pt;}
._54{margin-left:-80.960000pt;}
._5a{margin-left:-78.840000pt;}
._4e{margin-left:-77.881067pt;}
._59{margin-left:-72.000000pt;}
._52{margin-left:-59.840000pt;}
._56{margin-left:-14.826667pt;}
._5b{margin-left:-12.000000pt;}
._b{margin-left:-9.386667pt;}
._0{margin-left:-7.723311pt;}
._3{margin-left:-5.997166pt;}
._a{margin-left:-4.939200pt;}
._1{margin-left:-4.004736pt;}
._4{margin-left:-2.651200pt;}
._5{margin-left:-1.747200pt;}
._6{width:1.163033pt;}
._9{width:2.522667pt;}
._8{width:3.706667pt;}
._c{width:5.092267pt;}
._3f{width:6.317867pt;}
._4a{width:7.235733pt;}
._e{width:8.286400pt;}
._2{width:10.011840pt;}
._79{width:13.528533pt;}
._d{width:49.802667pt;}
._7{width:58.708267pt;}
._3d{width:67.396267pt;}
._3b{width:75.412267pt;}
._46{width:77.829867pt;}
._39{width:79.228267pt;}
._2b{width:80.133867pt;}
._2f{width:82.861867pt;}
._3e{width:83.828800pt;}
._3a{width:85.285867pt;}
._1a{width:87.866667pt;}
._2d{width:89.632533pt;}
._34{width:90.627733pt;}
._2e{width:91.987200pt;}
._32{width:93.183467pt;}
._33{width:94.161067pt;}
._24{width:95.614400pt;}
._18{width:96.560533pt;}
._35{width:97.850133pt;}
._3c{width:99.003200pt;}
._1b{width:101.081600pt;}
._16{width:102.624000pt;}
._1c{width:103.987200pt;}
._23{width:106.800000pt;}
._19{width:108.666133pt;}
._21{width:110.266667pt;}
._22{width:111.316267pt;}
._31{width:113.550933pt;}
._15{width:118.048000pt;}
._1d{width:119.490133pt;}
._37{width:120.546133pt;}
._20{width:122.140800pt;}
._36{width:123.100800pt;}
._5c{width:124.809600pt;}
._30{width:131.728000pt;}
._27{width:133.945067pt;}
._2c{width:134.966400pt;}
._28{width:139.281067pt;}
._12{width:145.254400pt;}
._25{width:146.757867pt;}
._13{width:148.202133pt;}
._29{width:152.996267pt;}
._2a{width:158.336533pt;}
._1f{width:159.873600pt;}
._26{width:164.692267pt;}
._42{width:169.226133pt;}
._1e{width:178.801067pt;}
._17{width:180.222933pt;}
._11{width:182.987733pt;}
._38{width:184.486567pt;}
._5e{width:187.797867pt;}
._72{width:189.558400pt;}
._64{width:199.797867pt;}
._f{width:201.921067pt;}
._5f{width:208.132267pt;}
._6d{width:211.797867pt;}
._6e{width:212.686933pt;}
._6f{width:214.358933pt;}
._62{width:219.332800pt;}
._67{width:221.025067pt;}
._75{width:223.268331pt;}
._76{width:225.126336pt;}
._44{width:228.308800pt;}
._10{width:239.787733pt;}
._61{width:243.333333pt;}
._78{width:244.789699pt;}
._73{width:250.477867pt;}
._47{width:251.914667pt;}
._49{width:253.636633pt;}
._41{width:263.917333pt;}
._48{width:267.066133pt;}
._71{width:268.744533pt;}
._60{width:279.567403pt;}
._6a{width:285.333333pt;}
._45{width:288.417600pt;}
._74{width:291.970603pt;}
._6b{width:297.332800pt;}
._43{width:300.550933pt;}
._77{width:312.301867pt;}
._68{width:349.527833pt;}
._65{width:355.578667pt;}
._69{width:372.858667pt;}
._5d{width:376.410667pt;}
._63{width:414.234667pt;}
._66{width:435.498667pt;}
._40{width:460.301333pt;}
._70{width:461.909867pt;}
._6c{width:488.346667pt;}
._14{width:553.981333pt;}
.fsc{font-size:29.866667pt;}
.fsb{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fse{font-size:40.000000pt;}
.fsa{font-size:41.066667pt;}
.fsd{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fsf{font-size:54.608750pt;}
.fs9{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:100.118400pt;}
.fs1{font-size:128.723733pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:5.333067pt;}
.ye4{bottom:7.624667pt;}
.ydb{bottom:8.000533pt;}
.yd5{bottom:9.333067pt;}
.yd0{bottom:16.000267pt;}
.ybd{bottom:17.332933pt;}
.y1{bottom:51.227600pt;}
.y10d{bottom:87.265067pt;}
.yef{bottom:100.209867pt;}
.y10c{bottom:102.598400pt;}
.ye9{bottom:104.204667pt;}
.yb4{bottom:106.451733pt;}
.yf3{bottom:113.469600pt;}
.y60{bottom:114.057733pt;}
.y31{bottom:114.713733pt;}
.yee{bottom:115.543200pt;}
.y10b{bottom:117.931733pt;}
.ye8{bottom:119.538000pt;}
.yb3{bottom:121.651733pt;}
.y9f{bottom:122.880400pt;}
.y9e{bottom:122.880667pt;}
.y9d{bottom:122.880800pt;}
.y9c{bottom:122.880933pt;}
.y9b{bottom:122.881067pt;}
.y9a{bottom:122.881200pt;}
.y99{bottom:122.881467pt;}
.y98{bottom:122.881600pt;}
.y97{bottom:122.881733pt;}
.y96{bottom:122.881867pt;}
.y95{bottom:122.882133pt;}
.y94{bottom:122.882267pt;}
.y93{bottom:122.882400pt;}
.y92{bottom:122.882533pt;}
.y91{bottom:122.882667pt;}
.y90{bottom:122.882933pt;}
.y8f{bottom:122.883067pt;}
.y8e{bottom:122.883200pt;}
.y8d{bottom:122.883333pt;}
.y8c{bottom:122.883600pt;}
.y6a{bottom:122.883733pt;}
.yf2{bottom:128.802933pt;}
.yf8{bottom:130.037333pt;}
.y30{bottom:130.713733pt;}
.yed{bottom:130.876533pt;}
.y5f{bottom:132.724400pt;}
.yb2{bottom:133.651733pt;}
.ye7{bottom:134.871333pt;}
.yf1{bottom:144.136267pt;}
.yf7{bottom:145.370667pt;}
.yb1{bottom:145.651733pt;}
.yec{bottom:146.209867pt;}
.ye6{bottom:150.204667pt;}
.y5e{bottom:151.391067pt;}
.yb0{bottom:157.651733pt;}
.yf0{bottom:159.469600pt;}
.yf6{bottom:160.704000pt;}
.yeb{bottom:161.543200pt;}
.y2f{bottom:162.713733pt;}
.ye5{bottom:165.538000pt;}
.y6c{bottom:167.883733pt;}
.yaf{bottom:169.651733pt;}
.y5d{bottom:170.057733pt;}
.y10a{bottom:173.380000pt;}
.y104{bottom:175.514533pt;}
.yf5{bottom:176.037333pt;}
.yea{bottom:176.876533pt;}
.y2e{bottom:178.713733pt;}
.yfe{bottom:181.417333pt;}
.yae{bottom:181.651733pt;}
.y109{bottom:188.713333pt;}
.y5c{bottom:188.724400pt;}
.y103{bottom:190.847867pt;}
.yf4{bottom:191.370667pt;}
.y2d{bottom:194.713733pt;}
.yfd{bottom:196.750667pt;}
.yad{bottom:200.965733pt;}
.y108{bottom:204.046667pt;}
.y102{bottom:206.181200pt;}
.y5b{bottom:207.391067pt;}
.y2c{bottom:210.713733pt;}
.yfc{bottom:212.084000pt;}
.yac{bottom:212.965733pt;}
.y107{bottom:219.380000pt;}
.y101{bottom:221.514533pt;}
.y5a{bottom:226.057733pt;}
.y2b{bottom:226.713733pt;}
.yfb{bottom:227.417333pt;}
.yab{bottom:228.845067pt;}
.y6d{bottom:231.826133pt;}
.y106{bottom:234.713333pt;}
.y100{bottom:236.847867pt;}
.yaa{bottom:240.845067pt;}
.y2a{bottom:242.713733pt;}
.yfa{bottom:242.750667pt;}
.y59{bottom:244.724400pt;}
.y6b{bottom:245.606933pt;}
.y105{bottom:250.046667pt;}
.yff{bottom:252.181200pt;}
.ya9{bottom:256.724400pt;}
.yf9{bottom:258.084000pt;}
.y29{bottom:258.713733pt;}
.y58{bottom:263.391067pt;}
.ya8{bottom:268.724400pt;}
.y28{bottom:274.713733pt;}
.y57{bottom:282.057733pt;}
.y6f{bottom:282.908933pt;}
.ya7{bottom:284.603867pt;}
.y27{bottom:290.713733pt;}
.y6e{bottom:292.974000pt;}
.ya6{bottom:296.603867pt;}
.y56{bottom:300.724400pt;}
.y26{bottom:306.713733pt;}
.ya5{bottom:312.483200pt;}
.y55{bottom:319.391067pt;}
.y25{bottom:322.713733pt;}
.ya4{bottom:324.483200pt;}
.y54{bottom:338.057733pt;}
.y24{bottom:338.713733pt;}
.ya3{bottom:340.362533pt;}
.y71{bottom:349.075600pt;}
.ya2{bottom:352.362533pt;}
.y23{bottom:354.713733pt;}
.y53{bottom:356.724400pt;}
.y70{bottom:362.401067pt;}
.y22{bottom:370.713733pt;}
.y52{bottom:375.391067pt;}
.ya1{bottom:375.800933pt;}
.ye3{bottom:384.766667pt;}
.y21{bottom:386.713733pt;}
.yd4{bottom:387.766667pt;}
.ydf{bottom:390.094800pt;}
.ye1{bottom:390.099733pt;}
.ye0{bottom:392.391333pt;}
.ydd{bottom:392.393067pt;}
.yd3{bottom:393.099733pt;}
.y51{bottom:394.057733pt;}
.ye2{bottom:396.389733pt;}
.yd7{bottom:397.099733pt;}
.ya0{bottom:398.314800pt;}
.y20{bottom:402.713733pt;}
.yde{bottom:411.474800pt;}
.y50{bottom:412.724400pt;}
.ydc{bottom:413.766400pt;}
.y73{bottom:414.367733pt;}
.y72{bottom:415.253200pt;}
.y1f{bottom:418.713733pt;}
.ybc{bottom:425.690667pt;}
.yb8{bottom:429.732000pt;}
.y4f{bottom:431.391067pt;}
.yb7{bottom:432.503600pt;}
.yb6{bottom:432.516933pt;}
.yc5{bottom:432.523600pt;}
.y1e{bottom:434.713733pt;}
.yc1{bottom:436.522000pt;}
.yba{bottom:441.232000pt;}
.yb5{bottom:443.023600pt;}
.yc3{bottom:448.482000pt;}
.yc0{bottom:449.232000pt;}
.y4e{bottom:450.057733pt;}
.y1d{bottom:450.713733pt;}
.ybe{bottom:451.516933pt;}
.yb9{bottom:455.482000pt;}
.y74{bottom:455.565200pt;}
.yc2{bottom:459.482000pt;}
.ybb{bottom:459.984000pt;}
.ybf{bottom:461.770267pt;}
.y75{bottom:461.934933pt;}
.y1c{bottom:466.713733pt;}
.y4d{bottom:468.724400pt;}
.yc4{bottom:474.232000pt;}
.y1b{bottom:482.713733pt;}
.y4c{bottom:487.391067pt;}
.y76{bottom:497.531600pt;}
.y77{bottom:505.205333pt;}
.y4b{bottom:506.057733pt;}
.y1a{bottom:517.611467pt;}
.y4a{bottom:524.724400pt;}
.y19{bottom:533.611467pt;}
.y78{bottom:543.299067pt;}
.y49{bottom:543.391067pt;}
.y79{bottom:546.202133pt;}
.y18{bottom:549.611467pt;}
.y48{bottom:562.057733pt;}
.y17{bottom:565.611467pt;}
.y47{bottom:580.724400pt;}
.y16{bottom:581.611467pt;}
.y7b{bottom:583.904800pt;}
.y128{bottom:584.087200pt;}
.y7a{bottom:585.620533pt;}
.y15{bottom:597.611467pt;}
.y46{bottom:599.391067pt;}
.y127{bottom:599.966533pt;}
.y14{bottom:613.611467pt;}
.y126{bottom:615.845867pt;}
.y45{bottom:618.057733pt;}
.y7c{bottom:627.628000pt;}
.ycf{bottom:627.988000pt;}
.y13{bottom:629.611467pt;}
.y125{bottom:631.725200pt;}
.y7d{bottom:633.233200pt;}
.yc8{bottom:633.481600pt;}
.yce{bottom:633.484933pt;}
.y44{bottom:636.724400pt;}
.ycb{bottom:637.486533pt;}
.yc6{bottom:643.988267pt;}
.y12{bottom:645.611467pt;}
.y124{bottom:647.604667pt;}
.yc9{bottom:649.446533pt;}
.y43{bottom:655.391067pt;}
.yd1{bottom:660.446533pt;}
.ycc{bottom:660.946533pt;}
.yc7{bottom:662.734933pt;}
.ycd{bottom:662.738267pt;}
.y123{bottom:663.484000pt;}
.yca{bottom:666.736533pt;}
.y42{bottom:674.057733pt;}
.y7e{bottom:675.005333pt;}
.yd2{bottom:675.196533pt;}
.y7f{bottom:677.117867pt;}
.y122{bottom:679.363333pt;}
.y11{bottom:680.509067pt;}
.y41{bottom:692.724400pt;}
.y121{bottom:695.242667pt;}
.y10{bottom:696.509067pt;}
.y120{bottom:711.122133pt;}
.y40{bottom:711.391067pt;}
.yf{bottom:712.509067pt;}
.y11f{bottom:727.001467pt;}
.y80{bottom:727.380267pt;}
.y3f{bottom:730.057733pt;}
.y81{bottom:733.156267pt;}
.y11e{bottom:742.880800pt;}
.y3e{bottom:748.724400pt;}
.y11d{bottom:758.760133pt;}
.y83{bottom:764.497467pt;}
.y3d{bottom:767.391067pt;}
.y82{bottom:772.784000pt;}
.ye{bottom:773.863333pt;}
.y11c{bottom:774.639600pt;}
.y3c{bottom:786.057733pt;}
.y11b{bottom:790.518933pt;}
.yd{bottom:800.530000pt;}
.y3b{bottom:804.724400pt;}
.y11a{bottom:806.398267pt;}
.y84{bottom:815.679467pt;}
.y85{bottom:819.387867pt;}
.y119{bottom:822.277733pt;}
.y69{bottom:823.391067pt;}
.y86{bottom:826.192533pt;}
.yc{bottom:827.196667pt;}
.yda{bottom:836.466667pt;}
.y118{bottom:838.157067pt;}
.y3a{bottom:842.057733pt;}
.yd9{bottom:842.175600pt;}
.yd8{bottom:844.467200pt;}
.y117{bottom:854.036400pt;}
.y68{bottom:860.724400pt;}
.y116{bottom:869.915733pt;}
.y87{bottom:877.569867pt;}
.y67{bottom:879.391067pt;}
.y88{bottom:880.241733pt;}
.ya{bottom:884.099600pt;}
.y115{bottom:885.795200pt;}
.yb{bottom:888.899600pt;}
.y66{bottom:898.057733pt;}
.y114{bottom:901.674533pt;}
.y39{bottom:903.889067pt;}
.y89{bottom:915.959200pt;}
.y65{bottom:916.724400pt;}
.y8a{bottom:917.287333pt;}
.y113{bottom:917.553867pt;}
.y38{bottom:919.889067pt;}
.y112{bottom:933.433333pt;}
.y64{bottom:935.391067pt;}
.y37{bottom:935.889067pt;}
.y111{bottom:949.312533pt;}
.y36{bottom:951.889067pt;}
.y63{bottom:954.057733pt;}
.y9{bottom:961.090533pt;}
.y8b{bottom:963.411333pt;}
.y35{bottom:967.889067pt;}
.y62{bottom:972.724400pt;}
.y110{bottom:972.751067pt;}
.y8{bottom:977.090533pt;}
.y34{bottom:983.889067pt;}
.y61{bottom:991.391067pt;}
.y7{bottom:993.090533pt;}
.y10f{bottom:995.264933pt;}
.y33{bottom:999.889067pt;}
.y6{bottom:1009.090533pt;}
.y10e{bottom:1010.598267pt;}
.y2{bottom:1016.151067pt;}
.y5{bottom:1032.649600pt;}
.y4{bottom:1048.649600pt;}
.y32{bottom:1057.090533pt;}
.y3{bottom:1064.649600pt;}
.h22{height:19.998667pt;}
.hf{height:20.795833pt;}
.h24{height:21.333333pt;}
.h1e{height:28.000000pt;}
.h1a{height:29.640000pt;}
.h10{height:29.708333pt;}
.h6{height:32.637500pt;}
.he{height:33.421875pt;}
.h11{height:33.595833pt;}
.h8{height:34.945312pt;}
.h4{height:34.968750pt;}
.h2{height:37.135417pt;}
.h1c{height:37.333333pt;}
.h16{height:37.794779pt;}
.h12{height:37.795312pt;}
.h2b{height:37.795846pt;}
.h20{height:39.520000pt;}
.h25{height:40.465084pt;}
.h2c{height:40.734375pt;}
.hb{height:40.848958pt;}
.h9{height:41.994792pt;}
.hd{height:43.375000pt;}
.h28{height:43.998667pt;}
.h23{height:44.000000pt;}
.h2a{height:44.437500pt;}
.h29{height:44.562500pt;}
.hc{height:46.194271pt;}
.h26{height:46.499733pt;}
.h1b{height:47.424000pt;}
.ha{height:50.604167pt;}
.h5{height:51.837500pt;}
.h27{height:53.160000pt;}
.h21{height:58.666667pt;}
.h1d{height:60.000000pt;}
.h7{height:65.062500pt;}
.h17{height:73.493333pt;}
.h1f{height:79.306667pt;}
.h13{height:81.421875pt;}
.h19{height:81.493333pt;}
.h15{height:85.794779pt;}
.h14{height:85.795312pt;}
.h3{height:100.275788pt;}
.h18{height:115.466667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:534.666667pt;}
.w3{width:536.000000pt;}
.w4{width:549.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x63{left:22.333867pt;}
.x64{left:33.208800pt;}
.x5e{left:71.208800pt;}
.x5f{left:103.292133pt;}
.x2{left:113.964000pt;}
.x3a{left:115.844267pt;}
.x69{left:117.915867pt;}
.x39{left:120.944933pt;}
.x62{left:121.885867pt;}
.x38{left:124.724400pt;}
.x67{left:134.755867pt;}
.xf{left:139.385600pt;}
.x68{left:144.209200pt;}
.xe{left:151.181067pt;}
.x49{left:152.132533pt;}
.x48{left:153.302533pt;}
.x10{left:154.718933pt;}
.x3d{left:156.802533pt;}
.x59{left:158.340800pt;}
.x3e{left:159.382533pt;}
.x50{left:162.635867pt;}
.x51{left:164.425867pt;}
.x5c{left:167.670800pt;}
.x6e{left:168.731733pt;}
.xb{left:170.078800pt;}
.x11{left:174.032933pt;}
.x66{left:175.458800pt;}
.x41{left:176.429200pt;}
.xc{left:177.637733pt;}
.x57{left:179.833867pt;}
.x4f{left:181.177600pt;}
.x46{left:186.302533pt;}
.x3b{left:189.177600pt;}
.x61{left:190.302533pt;}
.xd{left:192.755867pt;}
.x52{left:193.924133pt;}
.x42{left:198.642533pt;}
.x53{left:201.804133pt;}
.x12{left:204.187733pt;}
.x5b{left:207.340800pt;}
.x47{left:209.012533pt;}
.x56{left:211.059200pt;}
.x13{left:216.187733pt;}
.x3f{left:220.583867pt;}
.x5a{left:225.630800pt;}
.x65{left:231.010800pt;}
.x58{left:232.049067pt;}
.x43{left:233.469200pt;}
.x14{left:239.626267pt;}
.x55{left:242.754133pt;}
.x3c{left:249.097600pt;}
.x5d{left:252.510800pt;}
.x15{left:255.505600pt;}
.x44{left:258.549200pt;}
.x4a{left:268.752533pt;}
.x16{left:271.384933pt;}
.x54{left:280.674133pt;}
.x31{left:285.196267pt;}
.x17{left:287.264267pt;}
.x4c{left:294.872533pt;}
.x34{left:297.038000pt;}
.x4d{left:298.492533pt;}
.x18{left:303.143733pt;}
.x45{left:311.469200pt;}
.x6f{left:313.789333pt;}
.x36{left:315.521467pt;}
.x19{left:319.023067pt;}
.x4b{left:322.582533pt;}
.x4e{left:326.372533pt;}
.x6b{left:327.885867pt;}
.x6a{left:333.760800pt;}
.x1a{left:334.902400pt;}
.x6c{left:345.645867pt;}
.x1b{left:350.781733pt;}
.x1c{left:366.661067pt;}
.x1d{left:382.540533pt;}
.x6d{left:390.183733pt;}
.x1{left:393.517067pt;}
.x1e{left:398.419867pt;}
.x32{left:410.600800pt;}
.x1f{left:414.299200pt;}
.x20{left:430.178667pt;}
.x8{left:437.779333pt;}
.x21{left:446.058000pt;}
.x37{left:458.094000pt;}
.x3{left:462.464933pt;}
.x22{left:477.816667pt;}
.x9{left:479.170000pt;}
.x23{left:493.696133pt;}
.x24{left:509.575467pt;}
.x5{left:512.468800pt;}
.x25{left:525.454800pt;}
.x35{left:540.150533pt;}
.x4{left:543.869200pt;}
.x26{left:547.968800pt;}
.x6{left:550.537200pt;}
.x7{left:554.961067pt;}
.x27{left:559.968800pt;}
.xa{left:563.408400pt;}
.x28{left:571.968800pt;}
.x29{left:583.968800pt;}
.x33{left:589.340000pt;}
.x2a{left:595.968800pt;}
.x2b{left:607.968800pt;}
.x2c{left:619.968800pt;}
.x2d{left:631.968800pt;}
.x40{left:640.802533pt;}
.x60{left:641.802533pt;}
.x2e{left:643.968800pt;}
.x2f{left:655.968800pt;}
.x30{left:667.968800pt;}
}




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